From 80112823dc722bf1178027be58612d5811cfa281 Mon Sep 17 00:00:00 2001 From: Marc Fehling Date: Mon, 8 Nov 2021 10:10:26 -0700 Subject: [PATCH] Minor fixes to `predict_error` doc. --- include/deal.II/hp/refinement.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/deal.II/hp/refinement.h b/include/deal.II/hp/refinement.h index 56042480b9..3de5edfd6a 100644 --- a/include/deal.II/hp/refinement.h +++ b/include/deal.II/hp/refinement.h @@ -513,7 +513,7 @@ namespace hp * The following code snippet demonstrates how to impose hp-adaptivity based * on refinement history in an application: * @code - * // [initialisation...] + * // [initialization...] * Vector predicted_error_per_cell(triangulation.n_active_cells()); * for(unsigned int i = 0; i < triangulation.n_active_cells(); ++i) * predicted_error_per_cell[i] = std::numeric_limits::infinity(); @@ -569,9 +569,9 @@ namespace hp * p4est got refined, but before data is prepared for transfer. Refinement * and coarsening flags of the Triangulation object need to be matched with * the already refined p4est oracle using - * internal::parallel::distributed::TemporarilyMatchRefineFlags. - * Thus, a construct like the following is necessary to correctly predict - * errors in parallel distributed applications. + * parallel::distributed::TemporarilyMatchRefineFlags. Thus, a construct + * like the following is necessary to correctly predict errors in parallel + * distributed applications. * @code * Vector predicted_errors; * triangulation.signals.post_p4est_refinement.connect([&]() { -- 2.39.5