From 6c0ab2702e7cf8343aa4d8dc941283211ed0dff8 Mon Sep 17 00:00:00 2001 From: David Wells Date: Fri, 30 Jul 2021 14:50:19 -0400 Subject: [PATCH] Fix two comments in TriaAccessor. We have a 'cell' when the structural dimension matches the topological dimension. --- include/deal.II/grid/tria_accessor.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.39.5