diff --git a/product/ERP5Type/Tool/ClassTool.py b/product/ERP5Type/Tool/ClassTool.py
index d0a6e91e1d11d6d300040fddd3497e02d2bf63e2..8057df28bf878ce8f7b479dd924923d8b2fc1b39 100755
--- a/product/ERP5Type/Tool/ClassTool.py
+++ b/product/ERP5Type/Tool/ClassTool.py
@@ -485,10 +485,12 @@ class Test(ERP5TypeTestCase):
     """
     A Sample Test
     
-    For the method to be called during the test, its name must start with 'test'.
+    For the method to be called during the test,
+    its name must start with 'test'.
     The '_01_' part of the name is not mandatory,
     it just allows you to define in which order the tests are to be launched.
-    Tests methods (self.assert... and self.failIf...) are defined un /usr/lib/python/unittest.py.
+    Tests methods (self.assert... and self.failIf...)
+    are defined in /usr/lib/python/unittest.py.
     """
     self.assertEqual(0, 1)
 '''