From: Bruno Turcksin Date: Fri, 1 Jul 2016 16:17:16 +0000 (-0400) Subject: Fix a typo in the documentation of filter_iterators. X-Git-Tag: v8.5.0-rc1~932^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2742%2Fhead;p=dealii.git Fix a typo in the documentation of filter_iterators. --- diff --git a/include/deal.II/grid/filtered_iterator.h b/include/deal.II/grid/filtered_iterator.h index ab6ba61229..183e85cd0a 100644 --- a/include/deal.II/grid/filtered_iterator.h +++ b/include/deal.II/grid/filtered_iterator.h @@ -824,7 +824,7 @@ namespace internal * DoFHandler dof_handler; * ... * for (auto cell : filter_iterators(dof_handler.active_cell_iterators(), - * IteratorFilters::LocallyOwned()) + * IteratorFilters::LocallyOwnedCell()) * { * fe_values.reinit (cell); * ...do the local integration on 'cell'...; @@ -871,7 +871,7 @@ filter_iterators (IteratorRange i, * DoFHandler dof_handler; * ... * for (auto cell : filter_iterators(dof_handler.active_cell_iterators(), - * IteratorFilters::LocallyOwned(), + * IteratorFilters::LocallyOwnedCell(), * IteratorFilters::AtBoundary()) * { * fe_values.reinit (cell);