From f6fbecc59b8d871c86f728e302171ea13f3f01f6 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Tue, 3 Dec 2013 18:29:16 +0000 Subject: [PATCH] Documentation: Fix typos git-svn-id: https://svn.dealii.org/trunk@31862 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/doc/doxygen/headers/coding_conventions.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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