From: Wolfgang Bangerth Date: Wed, 17 Oct 2012 19:24:43 +0000 (+0000) Subject: Fix a misleading sentence in the documentation. X-Git-Tag: v8.0.0~1939 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b81266a53300f38d395098508d612c2bda526bd1;p=dealii.git Fix a misleading sentence in the documentation. git-svn-id: https://svn.dealii.org/trunk@27140 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-29/step-29.cc b/deal.II/examples/step-29/step-29.cc index 0c2bfeb3a9..759c670dde 100644 --- a/deal.II/examples/step-29/step-29.cc +++ b/deal.II/examples/step-29/step-29.cc @@ -474,7 +474,7 @@ namespace Step29 // here vector-valued) representing // the data vector given to // DataOut::add_data_vector, - // evaluated at all quadrature points + // evaluated at all evaluation points // where we generate output, and some // tensor objects representing // derivatives (that we don't use @@ -810,9 +810,9 @@ namespace Step29 QGauss quadrature_formula(2); QGauss face_quadrature_formula(2); - const unsigned int n_q_points = quadrature_formula.size(), - n_face_q_points = face_quadrature_formula.size(), - dofs_per_cell = fe.dofs_per_cell; + const unsigned int n_q_point = quadrature_formula.size(), + n_face_q_points = face_quadrature_formula.size(), + dofs_per_cell = fe.dofs_per_cell; // The FEValues objects will // evaluate the shape functions for