From: Marc Fehling Date: Fri, 26 Mar 2021 06:12:01 +0000 (-0600) Subject: Miscellaneous cleanup in DoFHandler. X-Git-Tag: v9.3.0-rc1~278^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F11967%2Fhead;p=dealii.git Miscellaneous cleanup in DoFHandler. --- diff --git a/include/deal.II/dofs/dof_handler.h b/include/deal.II/dofs/dof_handler.h index c4c15ab2e8..74254e3374 100644 --- a/include/deal.II/dofs/dof_handler.h +++ b/include/deal.II/dofs/dof_handler.h @@ -535,7 +535,7 @@ public: /** * Invalid active FE index which will be used as a default value to determine - * whether a future FE index has been set or not. + * whether a future FE index has been set or not. */ static const active_fe_index_type invalid_active_fe_index = static_cast(-1); @@ -1245,18 +1245,15 @@ public: locally_owned_mg_dofs_per_processor(const unsigned int level) const; /** - * Return a constant reference to the selected finite element object. - * Since there is only one FiniteElement @p index must be equal to zero - * which is also the default value. + * Return a constant reference to the indexth finite element object that is + * used by this object. */ const FiniteElement & get_fe(const unsigned int index = 0) const; /** * Return a constant reference to the set of finite element objects that - * are used by this @p DoFHandler. Since this object only contains one - * FiniteElement, only this one object is returned wrapped in a - * hp::FECollection. + * are used by this object. */ const hp::FECollection & get_fe_collection() const;