From fea4903a1f8e3bf6231b1f5b5710fdadd7b235e0 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Wed, 4 Nov 2009 22:15:50 +0000 Subject: [PATCH] Fix a typo. git-svn-id: https://svn.dealii.org/trunk@20024 0785d39b-7218-0410-832d-ea1e28bc413d --- .../lac/include/lac/compressed_simple_sparsity_pattern.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deal.II/lac/include/lac/compressed_simple_sparsity_pattern.h b/deal.II/lac/include/lac/compressed_simple_sparsity_pattern.h index d588f72f7b..494f46c87c 100644 --- a/deal.II/lac/include/lac/compressed_simple_sparsity_pattern.h +++ b/deal.II/lac/include/lac/compressed_simple_sparsity_pattern.h @@ -41,8 +41,8 @@ template class SparseMatrix; * times can only be achieved at the expense of either increased * memory or run time consumption upon use. The main purpose of this * class is to avoid some memory bottlenecks, so we chose to implement - * it memory conservative, but the chosen data format is too unsuited - * to be used for actual matrices. It is therefore necessary to first + * it memory conservative. The chosen data format is too unsuited + * to be used for actual matrices, though. It is therefore necessary to first * copy the data of this object over to an object of type * SparsityPattern before using it in actual matrices. * @@ -106,7 +106,7 @@ class CompressedSimpleSparsityPattern : public Subscriptor * involuntary copies of objects for * temporaries, which can use large * amounts of computing time. However, - * copy constructors are needed if yo + * copy constructors are needed if you * want to use the STL data types on * classes like this, e.g. to write such * statements like v.push_back @@ -194,7 +194,7 @@ class CompressedSimpleSparsityPattern : public Subscriptor * happens. */ template - void add_entries (const unsigned int row, + void add_entries (const unsigned int row, ForwardIterator begin, ForwardIterator end, const bool indices_are_unique_and_sorted = false); -- 2.39.5