From 9deaf58b7a1b6acc3216f81eee958c6317b12fc3 Mon Sep 17 00:00:00 2001 From: heister Date: Fri, 25 May 2012 17:15:29 +0000 Subject: [PATCH] documentation fixes (thanks felgru) git-svn-id: https://svn.dealii.org/trunk@25546 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-2/step-2.cc | 2 +- deal.II/examples/step-3/doc/intro.dox | 2 +- deal.II/examples/step-3/step-3.cc | 2 +- deal.II/examples/step-4/step-4.cc | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/deal.II/examples/step-2/step-2.cc b/deal.II/examples/step-2/step-2.cc index ead86f462b..8a24ffb6d4 100644 --- a/deal.II/examples/step-2/step-2.cc +++ b/deal.II/examples/step-2/step-2.cc @@ -183,7 +183,7 @@ void make_grid (Triangulation<2> &triangulation) // lingo: we distribute degrees of // freedom). Note that the DoFHandler // object will store a reference to this - // finite element object, so we need have to + // finite element object, so we have to // make sure its lifetime is at least as long // as that of the DoFHandler; one way to // make sure this is so is to make it static diff --git a/deal.II/examples/step-3/doc/intro.dox b/deal.II/examples/step-3/doc/intro.dox index 8f9b71cfcf..bebeefdd28 100644 --- a/deal.II/examples/step-3/doc/intro.dox +++ b/deal.II/examples/step-3/doc/intro.dox @@ -195,7 +195,7 @@ particular information you need; if anything can be re-used from the previous cell, then it will do so, and there is a lot of code in that class to make sure things are cached wherever this is advantageous. -The final piece of the this introduction is to mention that after a linear +The final piece of this introduction is to mention that after a linear system is obtained, it is solved using an iterative solver and then postprocessed: we create an output file using the DataOut class that can then be visualized using one of the common visualization programs. diff --git a/deal.II/examples/step-3/step-3.cc b/deal.II/examples/step-3/step-3.cc index cfbfba6806..1e9fa84ff9 100644 --- a/deal.II/examples/step-3/step-3.cc +++ b/deal.II/examples/step-3/step-3.cc @@ -533,7 +533,7 @@ void Step3::assemble_system () fe_values.reinit (cell); // Next, reset the local cell's - // contributions contributions to + // contributions to // global matrix and global right hand // side to zero, before we fill them: cell_matrix = 0; diff --git a/deal.II/examples/step-4/step-4.cc b/deal.II/examples/step-4/step-4.cc index aa8385c955..40bf96d41c 100644 --- a/deal.II/examples/step-4/step-4.cc +++ b/deal.II/examples/step-4/step-4.cc @@ -366,7 +366,7 @@ void Step4::setup_system () // non-constant right hand side // function and non-zero boundary // values. Both are tasks that are - // readily achieved with a only a few + // readily achieved with only a few // new lines of code in the // assemblage of the matrix and right // hand side. -- 2.39.5