From: Marc Fehling Date: Fri, 21 Jun 2024 10:47:49 +0000 (+0200) Subject: Mark code spans in documentation of is_consistent_in_parallel(). X-Git-Tag: v9.6.0-rc1~165^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F17161%2Fhead;p=dealii.git Mark code spans in documentation of is_consistent_in_parallel(). --- diff --git a/include/deal.II/lac/affine_constraints.h b/include/deal.II/lac/affine_constraints.h index 8458098fac..30a058e4de 100644 --- a/include/deal.II/lac/affine_constraints.h +++ b/include/deal.II/lac/affine_constraints.h @@ -1961,18 +1961,18 @@ public: * * This method checks if all processors agree on the constraints for their * local lines as given by @p locally_active_dofs. This method is a collective - * operation and will return @p true only if all processors are consistent. + * operation and will return `true` only if all processors are consistent. * * Please supply the owned DoFs per processor as returned by - * Utilities::MPI::all_gather(MPI_Comm, DoFHandler::locally_owned_dofs()) as + * `Utilities::MPI::all_gather(MPI_Comm, DoFHandler::locally_owned_dofs())` as * @p locally_owned_dofs and the result of * DoFTools::extract_locally_active_dofs() as * @p locally_active_dofs. The former is used to determine ownership of the * specific DoF, while the latter is used as the set of rows that need to be * checked. * - * If @p verbose is set to @p true, additional debug information is written - * to std::cout. + * If @p verbose is set to `true`, additional debug information is written + * to `std::cout`. * * @note This method exchanges all constraint information of locally active * lines and is as such slow for large computations and should probably