From: Timo Heister Date: Wed, 12 Feb 2014 22:40:14 +0000 (+0000) Subject: improve wording X-Git-Tag: v8.2.0-rc1~842 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8c8194efb517fe8e285b09e32f0df66ba37e7d38;p=dealii.git improve wording git-svn-id: https://svn.dealii.org/trunk@32465 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/grid/tria_accessor.h b/deal.II/include/deal.II/grid/tria_accessor.h index 9822d047ba..a29335112a 100644 --- a/deal.II/include/deal.II/grid/tria_accessor.h +++ b/deal.II/include/deal.II/grid/tria_accessor.h @@ -2599,10 +2599,11 @@ public: /** * Return the @p RefinementCase this cell was flagged to be refined - * with. - * The return value of this function can be compared to a bool to check if this cell is flagged - * for any kind of refinement. For example, after calling cell->set_refine_flag() - * this code will go into the if statement: + * with. The return value of this function can be compared to a bool to + * check if this cell is flagged for any kind of refinement. For example, if + * you have previously called cell->set_refine_flag() for a cell, then you + * will enter the 'if' block in the following snippet: + * * @code * if (cell->refine_flag_set()) * {