From 0998b9dd674ae849762a44e5df13a2251e7a8d8b Mon Sep 17 00:00:00 2001
From: Matthias Maier <tamiko@kyomu.43-1.org>
Date: Wed, 24 Oct 2012 16:53:30 +0000
Subject: [PATCH] Fix a typo introduced with r27140

git-svn-id: https://svn.dealii.org/trunk@27196 0785d39b-7218-0410-832d-ea1e28bc413d
---
 deal.II/examples/step-29/step-29.cc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/deal.II/examples/step-29/step-29.cc b/deal.II/examples/step-29/step-29.cc
index 759c670dde..183e15034a 100644
--- a/deal.II/examples/step-29/step-29.cc
+++ b/deal.II/examples/step-29/step-29.cc
@@ -810,9 +810,9 @@ namespace Step29
     QGauss<dim>    quadrature_formula(2);
     QGauss<dim-1>  face_quadrature_formula(2);
 
-    const unsigned int n_q_point        = quadrature_formula.size(),
-		       n_face_q_points  = face_quadrature_formula.size(),
-		       dofs_per_cell    = fe.dofs_per_cell;
+    const unsigned int n_q_points       = 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
-- 
2.39.5