From: Wolfgang Bangerth Date: Fri, 3 Apr 2020 02:12:50 +0000 (-0600) Subject: Make the spelling of 'add_parameter()' arguments consistent. X-Git-Tag: v9.2.0-rc1~298^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf55d45b0e48b309e1969a0dab532364f3598075;p=dealii.git Make the spelling of 'add_parameter()' arguments consistent. Specifically, always capitalize the first letter. Right now, it's inconsistent. --- diff --git a/examples/step-69/step-69.cc b/examples/step-69/step-69.cc index eaef8c5f3b..caa9eba2b8 100644 --- a/examples/step-69/step-69.cc +++ b/examples/step-69/step-69.cc @@ -540,10 +540,10 @@ namespace Step69 , computing_timer(computing_timer) { length = 4.; - add_parameter("length", length, "length of computational domain"); + add_parameter("length", length, "Length of computational domain"); height = 2.; - add_parameter("height", height, "height of computational domain"); + add_parameter("height", height, "Height of computational domain"); disk_position = 0.6; add_parameter("object position", @@ -553,12 +553,12 @@ namespace Step69 disk_diameter = 0.5; add_parameter("object diameter", disk_diameter, - "diameter of immersed disk"); + "Diameter of immersed disk"); refinement = 5; add_parameter("refinement", refinement, - "number of refinement steps of the geometry"); + "Number of refinement steps of the geometry"); } // Note that in the previous constructor we only passed the MPI @@ -1833,7 +1833,7 @@ namespace Step69 cfl_update = 0.80; add_parameter("cfl update", cfl_update, - "relative CFL constant used for update"); + "Relative CFL constant used for update"); } // In the class member prepare() we initialize the temporary