]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Fix the spelling of a function name. 13072/head
authorWolfgang Bangerth <bangerth@colostate.edu>
Tue, 14 Dec 2021 21:50:09 +0000 (14:50 -0700)
committerWolfgang Bangerth <bangerth@colostate.edu>
Tue, 14 Dec 2021 22:27:05 +0000 (15:27 -0700)
source/distributed/repartitioning_policy_tools.cc

index ada719d1c27fcafae90c251e42a41598568bfcdb..89fcfad40a02dd7fc0d09bda21b9c71a219a7d02 100644 (file)
@@ -32,7 +32,7 @@ namespace RepartitioningPolicyTools
   {
     template <int dim, int spacedim>
     void
-    add_indices_recursevly_for_first_child_policy(
+    add_indices_recursively_for_first_child_policy(
       const TriaIterator<CellAccessor<dim, spacedim>> &cell,
       const internal::CellIDTranslator<dim> &          cell_id_translator,
       IndexSet &                                       is_fine)
@@ -41,9 +41,9 @@ namespace RepartitioningPolicyTools
 
       if (cell->level() > 0 &&
           (cell->index() % GeometryInfo<dim>::max_children_per_cell) == 0)
-        add_indices_recursevly_for_first_child_policy(cell->parent(),
-                                                      cell_id_translator,
-                                                      is_fine);
+        add_indices_recursively_for_first_child_policy(cell->parent(),
+                                                       cell_id_translator,
+                                                       is_fine);
     }
   } // namespace
 
@@ -123,9 +123,9 @@ namespace RepartitioningPolicyTools
 
     for (const auto &cell : tria_fine.active_cell_iterators())
       if (cell->is_locally_owned())
-        add_indices_recursevly_for_first_child_policy(cell,
-                                                      cell_id_translator,
-                                                      is_level_partitions);
+        add_indices_recursively_for_first_child_policy(cell,
+                                                       cell_id_translator,
+                                                       is_level_partitions);
   }
 
 

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.