From 9861f48a2ed8262af12c40177f9fc164a1088527 Mon Sep 17 00:00:00 2001 From: Bruno Turcksin Date: Tue, 17 May 2016 08:15:17 -0400 Subject: [PATCH] Fix a few typos. --- include/deal.II/lac/la_vector.h | 6 +++--- include/deal.II/lac/vector_space_vector.h | 4 ++-- ...evector_assignement.cc => readwritevector_assignment.cc} | 0 ...assignement.output => readwritevector_assignment.output} | 0 4 files changed, 5 insertions(+), 5 deletions(-) rename tests/lac/{readwritevector_assignement.cc => readwritevector_assignment.cc} (100%) rename tests/lac/{readwritevector_assignement.output => readwritevector_assignment.output} (100%) 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 -- 2.39.5