From: Wolfgang Bangerth Date: Sun, 17 Sep 2006 19:26:34 +0000 (+0000) Subject: Make documentation read better X-Git-Tag: v8.0.0~11058 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=08cef11a9ebdab635bf51fbc7401b9d8a994cd33;p=dealii.git Make documentation read better git-svn-id: https://svn.dealii.org/trunk@13914 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/full_matrix.h b/deal.II/lac/include/lac/full_matrix.h index 165366640d..7176c52f9f 100644 --- a/deal.II/lac/include/lac/full_matrix.h +++ b/deal.II/lac/include/lac/full_matrix.h @@ -895,16 +895,14 @@ class FullMatrix : public Table<2,number> void gauss_jordan (); /** - * Assign the inverse of the - * given matrix to - * *this. This function is - * hardcoded for quadratic matrices - * of dimension one to four, - * since the amount of code - * needed grows quickly. For - * larger matrices, the method - * gauss_jordan() is invoked - * implicitly. + * Assign the inverse of the given matrix + * to *this. This function is + * hardcoded for quadratic matrices of + * dimension one to four. However, since + * the amount of code needed grows + * quickly, the method gauss_jordan() is + * invoked implicitly if the dimension is + * larger. */ template void invert (const FullMatrix &M);