From: Timo Heister Date: Tue, 1 Jul 2025 15:47:47 +0000 (-0400) Subject: TriangulationDescription: documentation fixes X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c036d27b6851dbf97b6496cd4585de33a6b1de1d;p=dealii.git TriangulationDescription: documentation fixes --- diff --git a/include/deal.II/grid/tria_description.h b/include/deal.II/grid/tria_description.h index 9a07c045fa..da22333aa6 100644 --- a/include/deal.II/grid/tria_description.h +++ b/include/deal.II/grid/tria_description.h @@ -396,13 +396,14 @@ namespace TriangulationDescription * Construct a TriangulationDescription::Description. In contrast * to the function above, this function is also responsible for creating * a serial triangulation and for its partitioning (by calling the - * provided `std::function` objects). Internally only selected processes ( - * every n-th/each root of a group of size group_size) create a serial + * provided `std::function` objects). Internally only selected processes + * (every n-th/each root of a group of size `group_size`) create a serial * triangulation and the TriangulationDescription::Description for all - * processes in its group, which is communicated. + * processes in its group, which is then communicated. * * This function can also be used to read an external mesh only once (by - * the root process and a group consisting all processes). The following + * the root process), by setting `group_size` to the number of MPI ranks + * and therefore creating a single group. The following * code snippet shows a modified version of the example provided in the * documentation of create_description_from_triangulation(). * Function calls that only need to be performed by the root process