From 7c2b6e0c38eeb3d262f56a1153c8f0e29306c991 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 11 Jul 2024 07:21:51 -0600 Subject: [PATCH] Updates to the LogStream documentation. --- include/deal.II/base/logstream.h | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/include/deal.II/base/logstream.h b/include/deal.II/base/logstream.h index c20df0fc49..762a5141d2 100644 --- a/include/deal.II/base/logstream.h +++ b/include/deal.II/base/logstream.h @@ -218,11 +218,11 @@ public: /** - * Maximum number of levels to be printed on the console. The default is 0, - * which will not generate any output. This function allows one to restrict - * console output to the highest levels of iterations. Only output with less - * than n prefixes is printed. By calling this function with - * n=0, no console output will be written. See step-3 for an + * Set the maximum number of levels to be printed on the console. The default + * is 0, which will not generate any output. This function allows one to + * restrict console output to the highest levels of iterations. Only output + * with less than n prefixes is printed. By calling this function + * with n=0, no console output will be written. See step-3 for an * example usage of this method. * * The previous value of this parameter is returned. @@ -232,9 +232,10 @@ public: /** - * Maximum number of levels to be written to the log file. The functionality - * is the same as depth_console, nevertheless, this function should - * be used with care, since it may spoil the value of a log file. + * Set the maximum number of levels to be written to the log file. The + * functionality is the same as depth_console, nevertheless, this + * function should be used with care, since it may spoil the value of a log + * file. * * The previous value of this parameter is returned. */ @@ -250,7 +251,7 @@ public: /** - * set the precision for the underlying stream and returns the previous + * Set the precision for the underlying stream and returns the previous * stream precision. This function mimics * http://www.cplusplus.com/reference/ios/ios_base/precision/ */ @@ -259,7 +260,7 @@ public: /** - * set the width for the underlying stream and returns the previous stream + * Set the width for the underlying stream and returns the previous stream * width. This function mimics * http://www.cplusplus.com/reference/ios/ios_base/width/ */ -- 2.39.5