From: bangerth Date: Mon, 21 May 2012 12:08:58 +0000 (+0000) Subject: Fix an assertment of doxygen markup problems. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=63241566f8112a8f690a2349cf25d92bdeef9938;p=dealii-svn.git Fix an assertment of doxygen markup problems. git-svn-id: https://svn.dealii.org/trunk@25526 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-22/step-22.cc b/deal.II/examples/step-22/step-22.cc index 3ccbb81e3a..e384c7966d 100644 --- a/deal.II/examples/step-22/step-22.cc +++ b/deal.II/examples/step-22/step-22.cc @@ -898,8 +898,8 @@ namespace Step22 // Note that in the above computation // of the local matrix contribution - // we added the term phi_p[i] - // * phi_p[j] , yielding a + // we added the term phi_p[i] * + // phi_p[j] , yielding a // pressure mass matrix in the // $(1,1)$ block of the matrix as // discussed in the diff --git a/deal.II/include/deal.II/fe/mapping.h b/deal.II/include/deal.II/fe/mapping.h index f0e5c2931f..1453356ccb 100644 --- a/deal.II/include/deal.II/fe/mapping.h +++ b/deal.II/include/deal.II/fe/mapping.h @@ -467,9 +467,9 @@ class Mapping : public Subscriptor * \mathbf u(\mathbf x) = \frac{1}{\text{det}J(\mathbf x)} * J(\mathbf x) \mathbf{\hat u}(\mathbf x). * @f] - * @todo What is n in mapping_piola description? * * + * @todo What is n in mapping_piola description? */ virtual void diff --git a/deal.II/include/deal.II/lac/full_matrix.h b/deal.II/include/deal.II/lac/full_matrix.h index 48c6258f15..2cef208b0e 100644 --- a/deal.II/include/deal.II/lac/full_matrix.h +++ b/deal.II/include/deal.II/lac/full_matrix.h @@ -960,8 +960,8 @@ class FullMatrix : public Table<2,number> const unsigned int j); /** - * A(i,1...n) += s*A(j,1...n) - * + t*A(k,1...n). Multiple + * A(i,1...n) += s*A(j,1...n) + + * t*A(k,1...n). Multiple * addition of rows of this. */ void add_row (const unsigned int i, @@ -977,8 +977,8 @@ class FullMatrix : public Table<2,number> const unsigned int j); /** - * A(1...n,i) += s*A(1...n,j) - * + t*A(1...n,k). Multiple + * A(1...n,i) += s*A(1...n,j) + + * t*A(1...n,k). Multiple * addition of columns of this. */ void add_col (const unsigned int i, diff --git a/deal.II/include/deal.II/lac/matrix_lib.h b/deal.II/include/deal.II/lac/matrix_lib.h index a91e84522e..0b7fba12db 100644 --- a/deal.II/include/deal.II/lac/matrix_lib.h +++ b/deal.II/include/deal.II/lac/matrix_lib.h @@ -100,8 +100,8 @@ class ProductMatrix : public PointerMatrixBase /** * Tranposed matrix-vector - * product w = m2T - * * m1T * v. + * product w = m2T * + * m1T * v. */ virtual void Tvmult (VECTOR& w, const VECTOR& v) const; @@ -270,8 +270,8 @@ class ProductSparseMatrix : public PointerMatrixBase > /** * Tranposed matrix-vector - * product w = m2T - * * m1T * v. + * product w = m2T * + * m1T * v. */ virtual void Tvmult (VectorType& w, const VectorType& v) const; diff --git a/deal.II/include/deal.II/lac/trilinos_vector_base.h b/deal.II/include/deal.II/lac/trilinos_vector_base.h index 1ef815919e..c54df41ca0 100644 --- a/deal.II/include/deal.II/lac/trilinos_vector_base.h +++ b/deal.II/include/deal.II/lac/trilinos_vector_base.h @@ -754,8 +754,8 @@ namespace TrilinosWrappers /** * Multiple addition of scaled - * vectors, i.e. *this = a*V - * + b*W. + * vectors, i.e. *this = a*V + + * b*W. */ void add (const TrilinosScalar a, const VectorBase &V,