From: Wolfgang Bangerth Date: Tue, 6 Oct 2020 00:53:18 +0000 (-0600) Subject: Minor doc update. X-Git-Tag: v9.3.0-rc1~1030^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca32f0a5809a22a9f0eb3da168649a124bdaa748;p=dealii.git Minor doc update. --- diff --git a/include/deal.II/base/convergence_table.h b/include/deal.II/base/convergence_table.h index 7d95d213bf..3a85cd74ce 100644 --- a/include/deal.II/base/convergence_table.h +++ b/include/deal.II/base/convergence_table.h @@ -38,10 +38,11 @@ DEAL_II_NAMESPACE_OPEN * set in relation to the number of cells or the number of DoFs. The * implementations of these non-standard methods is left to a user. * - * The number of cells may be added to the table by - * calling e.g. `add_value("n cells", n_cells)`. The number of DoFs may be - * added to the table by calling `add_value("n dofs", n_dofs)`. Further table - * data is also added by calling add_value(). Before the output of the table + * For example, the number of cells may be added to the table by + * calling `add_value("n cells", n_cells)`. The number of DoFs may be + * added to the table by calling `add_value("n dofs", n_dofs)`. Of course, + * one can also add more kinds of information by calling + * add_value() with other arguments. In any case, before the output of the table * the functions evaluate_convergence_rates() and * evaluate_all_convergence_rates() may be called. *