From: Mikael Vaillant Date: Thu, 26 Sep 2024 15:02:14 +0000 (-0400) Subject: modify comments X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F17666%2Fhead;p=dealii.git modify comments --- diff --git a/source/grid/grid_in.cc b/source/grid/grid_in.cc index 382b66a995..3483130d77 100644 --- a/source/grid/grid_in.cc +++ b/source/grid/grid_in.cc @@ -2016,7 +2016,7 @@ GridIn::read_msh(std::istream &input_stream) // assign boundary ids. std::array, 4> tag_maps; - // contain the the file stripped of the comments + // contain the content of the file stripped of the comments std::string stripped_file; // Comments can be included by mesh generating software and must be deleted, @@ -2037,7 +2037,7 @@ GridIn::read_msh(std::istream &input_stream) stripped_file += line + '\n'; } - // Restart file reading + // Restart reading the file normally since it has been stripped of comments std::istringstream in(stripped_file); in >> line;