From: Charu Lata Date: Wed, 7 Aug 2019 21:05:59 +0000 (-0600) Subject: Corrected for typos. X-Git-Tag: v9.2.0-rc1~1299^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb3f2fce05c7eb7a74ce2408d5ee181b1c0e91ae;p=dealii.git Corrected for typos. --- diff --git a/examples/step-3/step-3.cc b/examples/step-3/step-3.cc index 25be4270ed..c1272a99c9 100644 --- a/examples/step-3/step-3.cc +++ b/examples/step-3/step-3.cc @@ -82,13 +82,13 @@ using namespace dealii; // Instead of the procedural programming of previous examples, we encapsulate // everything into a class for this program. The class consists of functions -// which each perform certain aspects of a finite element program, a `main' +// which each perform certain aspects of a finite element program, a `main` // function which controls what is done first and what is done next, and a // list of member variables. // The public part of the class is rather short: it has a constructor and a -// function `run' that is called from the outside and acts as something like -// the `main' function: it coordinates which operations of this class shall be +// function `run` that is called from the outside and acts as something like +// the `main` function: it coordinates which operations of this class shall be // run in which order. Everything else in the class, i.e. all the functions // that actually do anything, are in the private section of the class: class Step3