From: guido Date: Thu, 26 Jan 2006 09:26:44 +0000 (+0000) Subject: fix a bug in the documentation X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=98fe6549fba8178d93293ce1a5f49e17e5e28565;p=dealii-svn.git fix a bug in the documentation git-svn-id: https://svn.dealii.org/trunk@12175 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/fe/fe.h b/deal.II/deal.II/include/fe/fe.h index 1431457b97..933810375c 100644 --- a/deal.II/deal.II/include/fe/fe.h +++ b/deal.II/deal.II/include/fe/fe.h @@ -1584,30 +1584,26 @@ class FiniteElement : public Subscriptor, protected: /** - * Array of projection matrices. See - * get_restriction_matrix() above. - * - * Matrices in this array are - * automatically initialized to - * correct size. If the derived - * finite element class does not - * implement these matrices, they - * should be resized to zero - * size. + * Array of projection + * matrices. See + * get_restriction_matrix() + * above. The constructor + * initializes these matrices to + * zero dimensions, which can be + * changed by derived classes + * implementing them. */ FullMatrix restriction[GeometryInfo::children_per_cell]; /** - * Array of embedding matrices. See - * get_prolongation_matrix() above. - * - * Matrices in this array are - * automatically initialized to - * correct size. If the derived - * finite element class does not - * implement these matrices, they - * should be resized to zero - * size. + * Array of embedding + * matrices. See + * get_prolongation_matrix() + * above. The constructor + * initializes these matrices to + * zero dimensions, which can be + * changed by derived classes + * implementing them. */ FullMatrix prolongation[GeometryInfo::children_per_cell];