]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Don't escape characters in @code...@endcode
authorwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Tue, 28 Mar 2006 14:53:49 +0000 (14:53 +0000)
committerwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Tue, 28 Mar 2006 14:53:49 +0000 (14:53 +0000)
git-svn-id: https://svn.dealii.org/trunk@12718 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/doc/tutorial/chapter-2.step-by-step/step-4.data/intro.dox

index e282d9e2b62a0c423429d9b20b21daafbcbe9879..a21e0340c3554143cb518de926c6964dee546eed 100644 (file)
@@ -39,7 +39,7 @@ resolved at the time of compilation for a specific template
 parameter. For example, consider the following piece of code:
 @code
   template <int dim>
-  void make_grid (Triangulation<dim> &amp;triangulation)
+  void make_grid (Triangulation<dim> &triangulation)
   {
     GridGenerator::hyper_cube (triangulation, -1, 1);
   };
@@ -68,7 +68,7 @@ requested and will compile the template above into a function with dim replaced
 by 2 everywhere, i.e. it will compile the function as if it were defined
 as
 @code
-  void make_grid (Triangulation<2> &amp;triangulation)
+  void make_grid (Triangulation<2> &triangulation)
   {
     GridGenerator::hyper_cube (triangulation, -1, 1);
   };
@@ -89,7 +89,7 @@ The same can be done with member variables. Consider the following
 function, which might in turn call the above one:
 @code
   template <int dim>
-  void make_grid_and_dofs (Triangulation<dim> &amp;triangulation)
+  void make_grid_and_dofs (Triangulation<dim> &triangulation)
   {
     make_grid (triangulation);
 

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.