From: David Wells Date: Thu, 20 Apr 2017 11:13:14 +0000 (-0400) Subject: Refer to all parallel vectors instead of just the PETSc class. X-Git-Tag: v9.0.0-rc1~1627^2~3 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e4be6e90d0bf17de28ddefae402cebd773d34c39;p=dealii.git Refer to all parallel vectors instead of just the PETSc class. --- diff --git a/include/deal.II/lac/vector.h b/include/deal.II/lac/vector.h index b34b9d5cef..8eb4c59eac 100644 --- a/include/deal.II/lac/vector.h +++ b/include/deal.II/lac/vector.h @@ -265,14 +265,14 @@ public: virtual ~Vector (); /** - * This function does nothing but is there for compatibility with the @p - * PETScWrappers::Vector class. + * This function does nothing but exists for compatibility with the parallel + * vector classes. * - * For the PETSc vector wrapper class, this function compresses the - * underlying representation of the PETSc object, i.e. flushes the buffers - * of the vector object if it has any. This function is necessary after - * writing into a vector element-by-element and before anything else can be - * done on it. + * For the parallel vector wrapper class, this function compresses the + * underlying representation of the vector, i.e. flushes the buffers of the + * vector object if it has any. This function is necessary after writing + * into a vector element-by-element and before anything else can be done on + * it. * * However, for the implementation of this class, it is immaterial and thus * an empty function.