From: Guido Kanschat Date: Thu, 26 Jan 2006 09:26:44 +0000 (+0000) Subject: fix a bug in the documentation X-Git-Tag: v8.0.0~12500 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d7a058e9d19329521200706b2fccccc7437b6dd;p=dealii.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];