From: Wolfgang Bangerth Date: Thu, 8 Nov 2001 17:16:28 +0000 (+0000) Subject: Fix @p occurence. X-Git-Tag: v8.0.0~18639 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cf196ad97744b3c2166c0cd404b95ab370b90260;p=dealii.git Fix @p occurence. git-svn-id: https://svn.dealii.org/trunk@5185 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-9/step-9.cc b/deal.II/examples/step-9/step-9.cc index c735d66bcc..9cb7545ec7 100644 --- a/deal.II/examples/step-9/step-9.cc +++ b/deal.II/examples/step-9/step-9.cc @@ -192,14 +192,14 @@ class AdvectionProblem // vector field with as many compents // as there are space dimensions. One // could now use a class derived from - // the @p{Function} base class, as we + // the ``Function'' base class, as we // have done for boundary values and // coefficients in previous examples, // but there is another possibility // in the library, namely a base // class that describes tensor valued // functions. In contrast to the - // usual @p{Function} objects, we + // usual ``Function'' objects, we // provide the compiler with // knowledge on the size of the // objects of the return type. This @@ -208,7 +208,7 @@ class AdvectionProblem // simple for usual vector-valued // functions where memory has to be // allocated on the heap (thus, the - // @p{Function::vector_value} + // ``Function::vector_value'' // function has to be given the // address of an object into which // the result is to be written, in