From bf55d45b0e48b309e1969a0dab532364f3598075 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 2 Apr 2020 20:12:50 -0600 Subject: [PATCH] Make the spelling of 'add_parameter()' arguments consistent. Specifically, always capitalize the first letter. Right now, it's inconsistent. --- examples/step-69/step-69.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 -- 2.39.5