From ce80a708d9bf5606ecea7d65c05283f526e341ea Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 6 Apr 2018 23:03:46 -0600 Subject: [PATCH] Clarify a comment in FiniteElement. --- include/deal.II/fe/fe.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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; -- 2.39.5