From e29f10c6bdb4d71cfec98a7486486abf13a31ea1 Mon Sep 17 00:00:00 2001
From: Thomas Moulard <thomas.moulard@gmail.com>
Date: Wed, 5 Jan 2011 19:01:46 +0100
Subject: [PATCH] Remove spurious semi-colon.

---
 src/dynamic.cpp | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/dynamic.cpp b/src/dynamic.cpp
index 5d017be..9d19eac 100644
--- a/src/dynamic.cpp
+++ b/src/dynamic.cpp
@@ -335,18 +335,18 @@ Dynamic( const std::string & name, bool build )
 
     docstring = "    \n"
       "    Get the dimension of the robot configuration.\n"
-      "    \n";
-      "      Return:\n";
-      "        an unsigned int: the dimension.\n";
+      "    \n"
+      "      Return:\n"
+      "        an unsigned int: the dimension.\n"
       "    \n";
     addCommand("getDimension",
 	       new command::GetDimension(*this, docstring));
 
     docstring = "    \n"
       "    Write the robot kinematic chain in a file.\n"
-      "    \n";
-      "      Input:\n";
-      "        a string: a filename.\n";
+      "    \n"
+      "      Input:\n"
+      "        a string: a filename.\n"
       "    \n";
     addCommand("write",
 	       new command::Write(*this, docstring));
-- 
GitLab