From: Martin Kronbichler Date: Mon, 31 Aug 2009 13:39:49 +0000 (+0000) Subject: Fix two more typos. X-Git-Tag: v8.0.0~7214 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ec0552bd05e61fba7c3f5c6e3435ecd0aeebd6f;p=dealii.git Fix two more typos. git-svn-id: https://svn.dealii.org/trunk@19354 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-16/step-16.cc b/deal.II/examples/step-16/step-16.cc index cf92a5ae1d..61f7d1f18d 100644 --- a/deal.II/examples/step-16/step-16.cc +++ b/deal.II/examples/step-16/step-16.cc @@ -432,9 +432,9 @@ void LaplaceProblem::solve () mg_smoother(vector_memory); // Initialize the smoother with our - // level matrices and the required, + // level matrices and the (required) // additional data for the - // relaxaton method with default + // relaxation method with default // values. RELAXATION::AdditionalData smoother_data; mg_smoother.initialize(mg_matrices, smoother_data); @@ -518,7 +518,7 @@ void LaplaceProblem::run () if (cycle == 0) { - // Generate a simple hypercube grid. + // Generate a simple hyperball grid. GridGenerator::hyper_ball(triangulation); static const HyperBallBoundary boundary; triangulation.set_boundary (0, boundary);