From: blaisb Date: Sat, 2 May 2020 06:07:31 +0000 (-0400) Subject: Short fix to documentation X-Git-Tag: v9.3.0-rc1~1629^2~15 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d9b2248b9a63a1f484df26b9f0c44a22c6cd9d6;p=dealii.git Short fix to documentation --- diff --git a/examples/step-70/step-70.cc b/examples/step-70/step-70.cc index 50f8fbc306..07ceaf5f39 100644 --- a/examples/step-70/step-70.cc +++ b/examples/step-70/step-70.cc @@ -1666,8 +1666,6 @@ namespace Step70 } - // The remainder of the code that parameter parsing and the main function is - // standard. template StokesImmersedProblemParameters::StokesImmersedProblemParameters() @@ -1675,7 +1673,7 @@ namespace Step70 , rhs("Right hand side", spacedim + 1) , angular_velocity("Angular velocity", spacedim == 3 ? spacedim : 1) { - // We split the parameters in various cathegories, by putting them in + // We split the parameters in various categories, by putting them in // different sections of the ParameterHandler class. We begin by // declaring all the global parameters used by StokesImmersedProblem // in the global scope: @@ -1764,7 +1762,7 @@ namespace Step70 } // namespace Step70 - +// The remainder of the code, the main function, is standard. int main(int argc, char *argv[]) { using namespace Step70;