From: David Wells Date: Fri, 30 Jul 2021 18:50:19 +0000 (-0400) Subject: Fix two comments in TriaAccessor. X-Git-Tag: v9.4.0-rc1~1111^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c0ab2702e7cf8343aa4d8dc941283211ed0dff8;p=dealii.git Fix two comments in TriaAccessor. We have a 'cell' when the structural dimension matches the topological dimension. --- diff --git a/include/deal.II/grid/tria_accessor.h b/include/deal.II/grid/tria_accessor.h index d0f3eb8793..7e4a7b2432 100644 --- a/include/deal.II/grid/tria_accessor.h +++ b/include/deal.II/grid/tria_accessor.h @@ -1687,7 +1687,7 @@ public: /** * Number of faces. * - * @note Only implemented for cells (dim==spacedim). + * @note Only implemented for cells (structdim==dim). */ unsigned int n_faces() const; @@ -1710,7 +1710,7 @@ public: * Return an object that can be thought of as an array containing all indices * from zero to n_faces(). * - * @note Only implemented for cells (dim==spacedim). + * @note Only implemented for cells (structdim==dim). */ std_cxx20::ranges::iota_view face_indices() const;