From: Wolfgang Bangerth Date: Sat, 7 Apr 2018 05:03:46 +0000 (-0600) Subject: Clarify a comment in FiniteElement. X-Git-Tag: v9.0.0-rc1~203^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce80a708d9bf5606ecea7d65c05283f526e341ea;p=dealii.git Clarify a comment in FiniteElement. --- diff --git a/include/deal.II/fe/fe.h b/include/deal.II/fe/fe.h index 8ac63e35d6..1e579bdc05 100644 --- a/include/deal.II/fe/fe.h +++ b/include/deal.II/fe/fe.h @@ -2413,9 +2413,9 @@ protected: * can be in (all combinations of the three bool flags face_orientation, * face_flip and face_rotation). * - * The standard implementation fills this with zeros, i.e. no permutation at - * all. Derived finite element classes have to fill this Table with the - * correct values. + * The constructor of this class fills this table with zeros, i.e., + * no permutation at all. Derived finite element classes have to + * fill this Table with the correct values. */ Table<2,int> adjust_quad_dof_index_for_face_orientation_table; @@ -2428,9 +2428,9 @@ protected: * for permutation so the vector is empty. In 3D it has the size of * #dofs_per_line. * - * The standard implementation fills this with zeros, i.e. no permutation at - * all. Derived finite element classes have to fill this vector with the - * correct values. + * The constructor of this class fills this table with zeros, i.e., + * no permutation at all. Derived finite element classes have to + * fill this vector with the correct values. */ std::vector adjust_line_dof_index_for_line_orientation_table;