From fb3f2fce05c7eb7a74ce2408d5ee181b1c0e91ae Mon Sep 17 00:00:00 2001 From: Charu Lata Date: Wed, 7 Aug 2019 15:05:59 -0600 Subject: [PATCH] Corrected for typos. --- examples/step-3/step-3.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.39.5