From: Wolfgang Bangerth Date: Tue, 18 Apr 2017 01:52:13 +0000 (-0600) Subject: Minor doc updates to GridTools. X-Git-Tag: v9.0.0-rc1~1668^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F4275%2Fhead;p=dealii.git Minor doc updates to GridTools. --- diff --git a/include/deal.II/grid/grid_tools.h b/include/deal.II/grid/grid_tools.h index 51d9284ccf..8bcd7ce8b0 100644 --- a/include/deal.II/grid/grid_tools.h +++ b/include/deal.II/grid/grid_tools.h @@ -704,13 +704,13 @@ namespace GridTools * @endcode * * Predicates that are frequently useful can be found in namespace - * IteratorFilters. For example, it is possible to extracting a layer based - * on material id + * IteratorFilters. For example, it is possible to extract a layer + * of cells around all of those cells with a given material id, * @code * GridTools::compute_active_cell_halo_layer(tria, * IteratorFilters::MaterialIdEqualTo(1, true)); * @endcode - * or based on a set of active FE indices for an hp::DoFHandler + * or around all cells with one of a set of active FE indices for an hp::DoFHandler * @code * GridTools::compute_active_cell_halo_layer(hp_dof_handler, * IteratorFilters::ActiveFEIndexEqualTo({1,2}, true));