From ef8fe0870477143d456adc3bea07c23ca9c109ee Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Sat, 3 Jun 2017 16:56:34 +0200 Subject: [PATCH] Fix up blank spaces after 'operator' --- include/deal.II/lac/trilinos_vector.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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); -- 2.39.5