From: Wolfgang Bangerth Date: Wed, 6 Sep 2017 13:14:09 +0000 (-0600) Subject: Fix formatting of a piece of example code. X-Git-Tag: v9.0.0-rc1~1117^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F5034%2Fhead;p=dealii.git Fix formatting of a piece of example code. --- diff --git a/include/deal.II/integrators/local_integrators.h b/include/deal.II/integrators/local_integrators.h index e6deeaba73..166d15c1ff 100644 --- a/include/deal.II/integrators/local_integrators.h +++ b/include/deal.II/integrators/local_integrators.h @@ -128,16 +128,19 @@ DEAL_II_NAMESPACE_OPEN * With these matrices, the function called by MeshWorker::loop() could be * written like * @code - * using namespace ::dealii:: LocalIntegrators; + * using namespace dealii::LocalIntegrators; * * template - * void MatrixIntegrator::cell( - * MeshWorker::DoFInfo& dinfo, - * typename MeshWorker::IntegrationInfo& info) + * void MatrixIntegrator::cell(MeshWorker::DoFInfo &dinfo, + * MeshWorker::IntegrationInfo &info) * { - * Laplace::cell_matrix(dinfo.matrix(0,false).matrix, info.fe_values(0)); - * Divergence::cell_matrix(dinfo.matrix(1,false).matrix, info.fe_values(0), info.fe_values(1)); - * L2::cell_matrix(dinfo.matrix(2,false).matrix, info.fe_values(1)); + * Laplace::cell_matrix (dinfo.matrix(0,false).matrix, + * info.fe_values(0)); + * Divergence::cell_matrix (dinfo.matrix(1,false).matrix, + * info.fe_values(0), + * info.fe_values(1)); + * L2::cell_matrix (dinfo.matrix(2,false).matrix, + * info.fe_values(1)); * } * @endcode * See step-39 for a worked out example of this code.