From: Martin Kronbichler Date: Wed, 5 Aug 2009 14:18:36 +0000 (+0000) Subject: Fix typo in comments that confused doxygen. X-Git-Tag: v8.0.0~7386 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=df01130cd399ee331b2754d6a9f1b81f40409491;p=dealii.git Fix typo in comments that confused doxygen. git-svn-id: https://svn.dealii.org/trunk@19181 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-4/step-4.cc b/deal.II/examples/step-4/step-4.cc index 86957d8f2c..2de4d22494 100644 --- a/deal.II/examples/step-4/step-4.cc +++ b/deal.II/examples/step-4/step-4.cc @@ -491,12 +491,12 @@ void LaplaceProblem::assemble_system () // As a final remark to these loops: // when we assemble the local // contributions into - // cell_matrix(i,j)<\code>, + // cell_matrix(i,j), // we have to multiply // the gradients of shape functions i // and j at point q_point and multiply // it with the scalar weights JxW. This - // is actually what happens: + // is what actually happens: // fe_values.shape_grad(i,q_point) // returns a dim dimensional // vector, represented by a @@ -540,7 +540,7 @@ void LaplaceProblem::assemble_system () // As the final step in this function, we // wanted to have non-homogeneous boundary - // values in this example, contrary to the + // values in this example, unlike the // one before. This is a simple task, we // only have to replace the // ZeroFunction used there by an object