From b8ea87dacb397e329d1cfede89328875b009f25a Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Wed, 8 Apr 2015 15:55:06 +0200 Subject: [PATCH] Fix some typos... --- include/deal.II/lac/block_matrix_base.h | 6 +++--- include/deal.II/lac/block_sparse_matrix_ez.h | 15 ++++++++------- include/deal.II/lac/chunk_sparse_matrix.h | 10 +++++----- include/deal.II/lac/sparse_matrix.h | 6 +++--- include/deal.II/lac/sparse_matrix_ez.h | 10 +++++----- 5 files changed, 24 insertions(+), 23 deletions(-) diff --git a/include/deal.II/lac/block_matrix_base.h b/include/deal.II/lac/block_matrix_base.h index a0fbff395e..791c97ae2f 100644 --- a/include/deal.II/lac/block_matrix_base.h +++ b/include/deal.II/lac/block_matrix_base.h @@ -409,13 +409,13 @@ public: const unsigned int column) const; /** - * Return the dimension of the image space. To remember: the matrix is of - * dimension $m \times n$. + * Return the dimension of the codomain (or range) space. To remember: + * the matrix is of dimension $m \times n$. */ size_type m () const; /** - * Return the dimension of the range space. To remember: the matrix is of + * Return the dimension of the domain space. To remember: the matrix is of * dimension $m \times n$. */ size_type n () const; diff --git a/include/deal.II/lac/block_sparse_matrix_ez.h b/include/deal.II/lac/block_sparse_matrix_ez.h index 1544665905..cf3905a9b9 100644 --- a/include/deal.II/lac/block_sparse_matrix_ez.h +++ b/include/deal.II/lac/block_sparse_matrix_ez.h @@ -1,6 +1,6 @@ // --------------------------------------------------------------------- // -// Copyright (C) 2002 - 2014 by the deal.II authors +// Copyright (C) 2002 - 2015 by the deal.II authors // // This file is part of the deal.II library. // @@ -150,25 +150,26 @@ public: bool empty () const; /** - * Return number of rows of this matrix, which equals the dimension of the - * image space. It is the sum of rows of the rows of sub-matrices. + * Return number of rows of this matrix, which equals the dimension of + * the codomain (or range) space. It is the sum of rows of the rows of + * sub-matrices. */ size_type n_rows () const; /** * Return number of columns of this matrix, which equals the dimension of - * the range space. It is the sum of columns of the columns of sub-matrices. + * the domain space. It is the sum of columns of the columns of sub-matrices. */ size_type n_cols () const; /** - * Return the dimension of the image space. To remember: the matrix is of - * dimension $m \times n$. + * Return the dimension of the codomain (or range) space. To remember: + * the matrix is of dimension $m \times n$. */ size_type m () const; /** - * Return the dimension of the range space. To remember: the matrix is of + * Return the dimension of the domain space. To remember: the matrix is of * dimension $m \times n$. */ size_type n () const; diff --git a/include/deal.II/lac/chunk_sparse_matrix.h b/include/deal.II/lac/chunk_sparse_matrix.h index e0ce18e19a..d0250b5b1e 100644 --- a/include/deal.II/lac/chunk_sparse_matrix.h +++ b/include/deal.II/lac/chunk_sparse_matrix.h @@ -1,6 +1,6 @@ // --------------------------------------------------------------------- // -// Copyright (C) 2008 - 2014 by the deal.II authors +// Copyright (C) 2008 - 2015 by the deal.II authors // // This file is part of the deal.II library. // @@ -584,14 +584,14 @@ public: bool empty () const; /** - * Return the dimension of the image space. To remember: the matrix is of - * dimension $m \times n$. + * Return the dimension of the codomain (or range) space. To remember: + * the matrix is of dimension $m \times n$. */ size_type m () const; /** - * Return the dimension of the range space. To remember: the matrix is of - * dimension $m \times n$. + * Return the dimension of the domain space. To remember: the matrix is + * of dimension $m \times n$. */ size_type n () const; diff --git a/include/deal.II/lac/sparse_matrix.h b/include/deal.II/lac/sparse_matrix.h index 8e62eb0181..7a898ddf01 100644 --- a/include/deal.II/lac/sparse_matrix.h +++ b/include/deal.II/lac/sparse_matrix.h @@ -641,13 +641,13 @@ public: bool empty () const; /** - * Return the dimension of the image space. To remember: the matrix is of - * dimension $m \times n$. + * Return the dimension of the codomain (or range) space. To remember: + * the matrix is of dimension $m \times n$. */ size_type m () const; /** - * Return the dimension of the range space. To remember: the matrix is of + * Return the dimension of the domain space. To remember: the matrix is of * dimension $m \times n$. */ size_type n () const; diff --git a/include/deal.II/lac/sparse_matrix_ez.h b/include/deal.II/lac/sparse_matrix_ez.h index f7c8d59958..f3067c30f9 100644 --- a/include/deal.II/lac/sparse_matrix_ez.h +++ b/include/deal.II/lac/sparse_matrix_ez.h @@ -1,6 +1,6 @@ // --------------------------------------------------------------------- // -// Copyright (C) 2002 - 2014 by the deal.II authors +// Copyright (C) 2002 - 2015 by the deal.II authors // // This file is part of the deal.II library. // @@ -373,14 +373,14 @@ public: bool empty () const; /** - * Return the dimension of the image space. To remember: the matrix is of - * dimension $m \times n$. + * Return the dimension of the codomain (or range) space. To remember: + * the matrix is of dimension $m \times n$. */ size_type m () const; /** - * Return the dimension of the range space. To remember: the matrix is of - * dimension $m \times n$. + * Return the dimension of the domain space. To remember: the matrix is + * of dimension $m \times n$. */ size_type n () const; -- 2.39.5