From: Wolfgang Bangerth Date: Tue, 26 Feb 2008 04:24:53 +0000 (+0000) Subject: Minor textual changes. X-Git-Tag: v8.0.0~9382 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be7a15ea99736aab2061d58f06c5e1329c878f94;p=dealii.git Minor textual changes. git-svn-id: https://svn.dealii.org/trunk@15776 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-31/step-31.cc b/deal.II/examples/step-31/step-31.cc index 51823b2aed..af1c736f81 100644 --- a/deal.II/examples/step-31/step-31.cc +++ b/deal.II/examples/step-31/step-31.cc @@ -15,7 +15,7 @@ // @sect3{Include files} // As usual, we start by including - // some well-known files. + // some well-known files: #include #include #include @@ -51,21 +51,21 @@ #include #include - // As in step-29, we include the libary for - // the sparse direct solver UMFPACK. + // Then we need to include the header file + // for the sparse direct solver UMFPACK: #include // This includes the libary for the // incomplete LU factorization that will - // be used as a preconditioner in 3D. + // be used as a preconditioner in 3D: #include // This is C++: #include #include - // As in all programs, the namespace is set - // to dealii. + // As in all programs, the namespace dealii + // in included: using namespace dealii; // @sect3{Defining the inner preconditioner type}