From: Ralf Hartmann Date: Wed, 21 Sep 2005 06:56:22 +0000 (+0000) Subject: Remove ending semicolons. X-Git-Tag: v8.0.0~13117 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=544b981f9f3e90fbc4b62430aa0f76b92a24ecb0;p=dealii.git Remove ending semicolons. git-svn-id: https://svn.dealii.org/trunk@11486 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/development/writing-documentation.html b/deal.II/doc/development/writing-documentation.html index 13f89f9c46..08d6c22c21 100644 --- a/deal.II/doc/development/writing-documentation.html +++ b/deal.II/doc/development/writing-documentation.html @@ -159,7 +159,7 @@ * void foobar () * { * i = 0; - * }; + * } * @endverbatim */ @@ -169,7 +169,7 @@ void foobar () { i = 0; - }; + } This is useful if you want to include small sample code snippets into your documentation. In particular, it is important that