From: Daniel Arndt Date: Sat, 3 Jun 2017 14:56:34 +0000 (+0200) Subject: Fix up blank spaces after 'operator' X-Git-Tag: v9.0.0-rc1~1536^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef8fe0870477143d456adc3bea07c23ca9c109ee;p=dealii.git Fix up blank spaces after 'operator' --- diff --git a/include/deal.II/lac/trilinos_vector.h b/include/deal.II/lac/trilinos_vector.h index 8a8bb874e8..da0ef5bc05 100644 --- a/include/deal.II/lac/trilinos_vector.h +++ b/include/deal.II/lac/trilinos_vector.h @@ -82,9 +82,9 @@ namespace TrilinosWrappers /** * This class implements a wrapper for accessing the Trilinos vector in * the same way as we access deal.II objects: it is initialized with a - * vector and an element within it, and has a conversion operatorto + * vector and an element within it, and has a conversion operator to * extract the scalar value of this element. It also has a variety of - * assignment operatorfor writing to this one element. + * assignment operator for writing to this one element. * * @ingroup TrilinosWrappers */ @@ -107,9 +107,9 @@ namespace TrilinosWrappers * @p v and @p w, and assign elements like in v(i)=w(i). Here, * both left and right hand side of the assignment have data type * VectorReference, but what we really mean is to assign the vector - * elements represented by the two references. This operatorimplements + * elements represented by the two references. This operator implements * this operation. Note also that this allows us to make the assignment - * operatorconst. + * operator const. */ const VectorReference & operator= (const VectorReference &r) const; @@ -632,7 +632,7 @@ namespace TrilinosWrappers * the constructor explicit work. * * Since the semantics of assigning a scalar to a vector are not - * immediately clear, this operatorcan only be used if you want + * immediately clear, this operator can only be used if you want * to set the entire vector to zero. This allows the intuitive notation * v=0. */ @@ -646,7 +646,7 @@ namespace TrilinosWrappers Vector &operator= (const Vector &v); /** - * Move the given vector. This operatorreplaces the present vector with + * Move the given vector. This operator replaces the present vector with * @p v by efficiently swapping the internal data structures. */ Vector &operator= (Vector &&v);