From 5b9fd312c192b6265981e79db9d0308b739b0b2e Mon Sep 17 00:00:00 2001 From: Mikael Vaillant Date: Thu, 26 Sep 2024 11:02:14 -0400 Subject: [PATCH] modify comments --- source/grid/grid_in.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.39.5