From: Fabian Castelli <fabian.castelli@kit.edu>
Date: Thu, 28 Oct 2021 09:23:22 +0000 (+0200)
Subject: Fix some typos
X-Git-Tag: v9.4.0-rc1~877^2
X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4d5356f403d488c0ca4e41ce55b33005565e3ff9;p=dealii.git

Fix some typos
---

diff --git a/include/deal.II/grid/tria_description.h b/include/deal.II/grid/tria_description.h
index 0a75e87d24..ac9dfea989 100644
--- a/include/deal.II/grid/tria_description.h
+++ b/include/deal.II/grid/tria_description.h
@@ -455,7 +455,7 @@ namespace TriangulationDescription
      * @endcode
      *
      * Example for parallel::distributed::Triangulation (partitioning can be
-     * skipped, since the trianguation has already been partitioned by p4est):
+     * skipped, since the triangulation has already been partitioned by p4est):
      *
      * @code
      * parallel::distributed::Triangulation<dim, spacedim> tria_base(comm);
@@ -479,7 +479,7 @@ namespace TriangulationDescription
      * @param settings See the description of the Settings enumerator.
      * @param my_rank_in Construct Description for the specified rank (only
      *   working for serial triangulations that have been partitioned by
-     *   functions like GridToold::partition_triangulation()).
+     *   functions like GridTools::partition_triangulation()).
      * @return Description to be used to set up a Triangulation.
      *
      * @note If construct_multigrid_hierarchy is set in the settings, the source
diff --git a/include/deal.II/grid/tria_faces.h b/include/deal.II/grid/tria_faces.h
index 92df77cc63..56ef15c61d 100644
--- a/include/deal.II/grid/tria_faces.h
+++ b/include/deal.II/grid/tria_faces.h
@@ -31,7 +31,7 @@ namespace internal
     /**
      * This class contains information belonging to the faces of a
      * triangulation. These classes are similar to the TriaLevel classes. As
-     * cells are organised in a hierarchical structure of levels, each
+     * cells are organized in a hierarchical structure of levels, each
      * triangulation consists of several such TriaLevels. However the faces of
      * a triangulation, lower dimensional objects like lines in 2D or lines
      * and quads in 3D, do not have to be based on such a hierarchical
diff --git a/include/deal.II/grid/tria_iterator.h b/include/deal.II/grid/tria_iterator.h
index 086193f786..340af33bd4 100644
--- a/include/deal.II/grid/tria_iterator.h
+++ b/include/deal.II/grid/tria_iterator.h
@@ -325,7 +325,7 @@ public:
    * like <tt>(*i).index ();</tt>
    *
    * This function has to be specialized explicitly for the different @p
-   * Pointees, to allow an
+   * Pointers, to allow an
    * <tt>iterator<1,TriangulationLevel<1>::LinesData></tt> to point to
    * <tt>tria->lines.cells[index]</tt> while for one dimension higher it has
    * to point to <tt>tria->quads.cells[index]</tt>.