From: maier Date: Tue, 3 Dec 2013 18:29:16 +0000 (+0000) Subject: Documentation: Fix typos X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d35f8325d731d03c2e4a2b06f242b6bdf37cb4db;p=dealii-svn.git Documentation: Fix typos git-svn-id: https://svn.dealii.org/trunk@31862 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/doxygen/headers/coding_conventions.h b/deal.II/doc/doxygen/headers/coding_conventions.h index f6fff10ef5..bb73ab74ab 100644 --- a/deal.II/doc/doxygen/headers/coding_conventions.h +++ b/deal.II/doc/doxygen/headers/coding_conventions.h @@ -141,7 +141,7 @@ we list here:
     Vector &
     operator += (Vector       &lhs,
-                 const Vector &rhs) {
+                 const Vector &rhs)
     {
       for (unsigned int i=0; i
     Vector &
     operator += (Vector       &lhs,
-                 const Vector &rhs) {
+                 const Vector &rhs)
     {
       Assert (lhs.size() == rhs.size(),
               ExcDimensionMismatch (lhs.size(), rhs.size());
@@ -210,7 +210,7 @@ we list here:
   follows:
   
   
-    double norm (const Vector &v) {
+    double norm (const Vector &v)
     {
       double s = 0;
       for (unsigned int i=0; i