]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Improve the style in parameter_handler.cc a bit.
authorDavid Wells <wellsd2@rpi.edu>
Mon, 25 Jan 2016 02:43:36 +0000 (21:43 -0500)
committerDavid Wells <wellsd2@rpi.edu>
Mon, 25 Jan 2016 03:44:43 +0000 (22:44 -0500)
source/base/parameter_handler.cc

index b8ae2f99dcaa017384f1b5f6af3b7ce372fae78b..f761081dd5c30ca06f3e43a58e5c0b03d4157278 100644 (file)
@@ -1350,12 +1350,12 @@ bool ParameterHandler::read_input (std::istream &input,
       // scan_line. This makes the continuation line logic a lot simpler.
       input_line = Utilities::trim (input_line);
 
-      // check whether or not the current line should be joined with the next
+      // Check whether or not the current line should be joined with the next
       // line before calling scan_line.
       if (input_line.length() != 0 &&
           input_line.find_last_of('\\') == input_line.length() - 1)
         {
-          input_line.erase(input_line.length() - 1); // remove the last '\'
+          input_line.erase (input_line.length() - 1); // remove the last '\'
           is_concatenated = true;
 
           fully_concatenated_line += input_line;
@@ -1367,7 +1367,7 @@ bool ParameterHandler::read_input (std::istream &input,
           fully_concatenated_line += input_line;
           is_concatenated = false;
         }
-      // finally, if neither the previous nor current lines are continuations,
+      // Finally, if neither the previous nor current lines are continuations,
       // then the current input line is entirely concatenated.
       else
         {

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.