From: Wolfgang Bangerth Date: Thu, 5 Mar 2020 23:23:27 +0000 (-0700) Subject: Reference step-69 in a couple of places. X-Git-Tag: v9.2.0-rc1~452^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F9628%2Fhead;p=dealii.git Reference step-69 in a couple of places. --- diff --git a/include/deal.II/base/parallel.h b/include/deal.II/base/parallel.h index 7376ec70fe..f2c542c060 100644 --- a/include/deal.II/base/parallel.h +++ b/include/deal.II/base/parallel.h @@ -373,7 +373,8 @@ namespace parallel /** * This function applies the given function argument @p f to all elements in - * the range [begin,end) and may do so in parallel. + * the range [begin,end) and may do so in parallel. An example + * of its use is given in step-69. * * However, in many cases it is not efficient to call a function on each * element, so this function calls the given function object on sub-ranges. diff --git a/include/deal.II/base/parameter_acceptor.h b/include/deal.II/base/parameter_acceptor.h index e0467454cb..0a1a20060d 100644 --- a/include/deal.II/base/parameter_acceptor.h +++ b/include/deal.II/base/parameter_acceptor.h @@ -72,7 +72,7 @@ DEAL_II_NAMESPACE_OPEN * attach a signal to ParameterAcceptor::declare_parameters_call_back and * ParameterAcceptor::parse_parameters_call_back, that are called just after * the declare_parameters() and parse_parameters() functions of each derived - * class. + * class. step-69 has an example of doing this. * * A typical usage of this class is the following: *