From: Bruno Turcksin Date: Tue, 17 May 2016 12:15:17 +0000 (-0400) Subject: Fix a few typos. X-Git-Tag: v8.5.0-rc1~1035^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2607%2Fhead;p=dealii.git Fix a few typos. --- diff --git a/include/deal.II/lac/la_vector.h b/include/deal.II/lac/la_vector.h index 51b1dce502..880b37a4ce 100644 --- a/include/deal.II/lac/la_vector.h +++ b/include/deal.II/lac/la_vector.h @@ -123,7 +123,7 @@ namespace LinearAlgebra virtual Vector &operator+= (const VectorSpaceVector &V); /** - * Substract the vector @p V from the present one. + * Subtract the vector @p V from the present one. */ virtual Vector &operator-= (const VectorSpaceVector &V); @@ -168,12 +168,12 @@ namespace LinearAlgebra /** * Scale each element of this vector by the corresponding element in the * argument. This function is mostly meant to simulate multiplication (and - * immediate re-assignement) by a diagonal scaling matrix. + * immediate re-assignment) by a diagonal scaling matrix. */ virtual void scale(const VectorSpaceVector &scaling_factors); /** - * Assignement *this = a*V. + * Assignment *this = a*V. */ virtual void equ(const Number a, const VectorSpaceVector &V); diff --git a/include/deal.II/lac/vector_space_vector.h b/include/deal.II/lac/vector_space_vector.h index 9d06515826..837f4c4da3 100644 --- a/include/deal.II/lac/vector_space_vector.h +++ b/include/deal.II/lac/vector_space_vector.h @@ -117,12 +117,12 @@ namespace LinearAlgebra /** * Scale each element of this vector by the corresponding element in the * argument. This function is mostly meant to simulate multiplication (and - * immediate re-assignement) by a diagonal scaling matrix. + * immediate re-assignment) by a diagonal scaling matrix. */ virtual void scale(const VectorSpaceVector &scaling_factors) = 0; /** - * Assignement *this = a*V. + * Assignment *this = a*V. */ virtual void equ(const Number a, const VectorSpaceVector &V) = 0; diff --git a/tests/lac/readwritevector_assignement.cc b/tests/lac/readwritevector_assignment.cc similarity index 100% rename from tests/lac/readwritevector_assignement.cc rename to tests/lac/readwritevector_assignment.cc diff --git a/tests/lac/readwritevector_assignement.output b/tests/lac/readwritevector_assignment.output similarity index 100% rename from tests/lac/readwritevector_assignement.output rename to tests/lac/readwritevector_assignment.output