From: Wolfgang Bangerth Date: Tue, 11 Apr 2017 16:04:05 +0000 (-0600) Subject: Minor updates to the documentation of TableHandler. X-Git-Tag: v9.0.0-rc1~1703^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F4245%2Fhead;p=dealii.git Minor updates to the documentation of TableHandler. --- diff --git a/include/deal.II/base/table_handler.h b/include/deal.II/base/table_handler.h index 55687aec1f..807fda071b 100644 --- a/include/deal.II/base/table_handler.h +++ b/include/deal.II/base/table_handler.h @@ -183,7 +183,7 @@ namespace internal * { * table.add_value("numbers", i); * table.add_value("squares", i*i); - * table.add_value("square roots", sqrt(i)); + * table.add_value("square roots", std::sqrt(1.*i)); * } * // merge the second and third column * table.add_column_to_supercolumn("squares", "squares and roots"); @@ -657,7 +657,7 @@ protected: /** * Stores the column and supercolumn keys in the order desired by the user. * By default this is the order of adding the columns. This order may be - * changed by set_column_order(...). + * changed by set_column_order(). */ std::vector column_order;