From: Krishnakumar Gopalakrishnan Date: Thu, 9 Jan 2020 19:51:27 +0000 (+0000) Subject: replace the use of 'he' with 'it' to refer to neighbouring cell in tria.cc X-Git-Tag: v9.2.0-rc1~708^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F9275%2Fhead;p=dealii.git replace the use of 'he' with 'it' to refer to neighbouring cell in tria.cc --- diff --git a/source/grid/tria.cc b/source/grid/tria.cc index a2d8abfbc1..72a49876d4 100644 --- a/source/grid/tria.cc +++ b/source/grid/tria.cc @@ -276,7 +276,7 @@ namespace if (cell_will_be_coarsened(neighbor)) return false; else - // if the neighor is refined, then he + // if the neighbor is refined, then it // is also refined at our current // face. He will stay so without // coarsening, so return true in that @@ -288,7 +288,7 @@ namespace } // now, the neighbor is not refined, but - // perhaps he will be + // perhaps it will be const RefinementCase nb_ref_flag = neighbor->refine_flag_set(); if (nb_ref_flag != RefinementCase::no_refinement) { @@ -382,7 +382,7 @@ namespace Assert(dim == 3, ExcInternalError()); // In that case, however, no // matter what the neighbor - // does, he won't be finer + // does, it won't be finer // after the next refinement // step. return false;