From fbc0e9a029094c9a2853d76417638c0cd7c2e9bc Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 15 Sep 2020 17:26:23 -0600 Subject: [PATCH] Minor doc fixes. --- include/deal.II/grid/tria_accessor.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/deal.II/grid/tria_accessor.h b/include/deal.II/grid/tria_accessor.h index f54176e70f..3af0cabae7 100644 --- a/include/deal.II/grid/tria_accessor.h +++ b/include/deal.II/grid/tria_accessor.h @@ -2926,7 +2926,7 @@ public: /** * Return an iterator to the neighboring cell on the other side of the face * with number @p face_no. If the neighbor does not exist, - * i.e., if the @p ith face of the current object is at the boundary, then + * i.e., if the face with number @p face_no of the current object is at the boundary, then * an invalid iterator is returned. * * Consequently, the index @p face_no must be less than n_faces(). @@ -2964,7 +2964,7 @@ public: * Return the level of the neighboring cell on the other side of the face with * number @p face_no. If the neighbor does not exist, this function returns -1. * - * This function is equivalent to cell->neighbor(face_no)->level(). + * This function is equivalent to `cell->neighbor(face_no)->level()`. * See neighbor() for more details. */ int @@ -2972,7 +2972,7 @@ public: /** * Return the how-many'th neighbor this cell is of - * cell->neighbor(face_no), i.e. return the @p other_face_no such that + * cell->neighbor(face_no), i.e. return @p other_face_no such that * cell->neighbor(face_no)->neighbor(other_face_no)==cell. This * function is the right one if you want to know how to get back from a * neighbor to the present cell. @@ -2986,7 +2986,7 @@ public: /** * Return, whether the neighbor is coarser then the present cell. This is - * important in case of ansiotropic refinement where this information does + * important in case of anisotropic refinement where this information does * not depend on the levels of the cells. * * Note, that in an anisotropic setting, a cell can only be coarser than -- 2.39.5