From: Marc Fehling Date: Mon, 8 Nov 2021 17:10:26 +0000 (-0700) Subject: Minor fixes to `predict_error` doc. X-Git-Tag: v9.4.0-rc1~853^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F12927%2Fhead;p=dealii.git Minor fixes to `predict_error` doc. --- 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([&]() {