QScintilla/SpellChecker.py

changeset 2965
d133c7edd88a
parent 2302
f29e9405c851
child 3011
18292228c724
--- a/QScintilla/SpellChecker.py	Sun Sep 29 15:54:10 2013 +0200
+++ b/QScintilla/SpellChecker.py	Sun Sep 29 18:22:08 2013 +0200
@@ -358,7 +358,7 @@
     
     def checkDocument(self):
         """
-        Public method to check the complete document
+        Public method to check the complete document.
         """
         self.__checkDocumentPart(0, self.editor.length())
     
@@ -489,6 +489,8 @@
     def __iter__(self):
         """
         Private method to create an iterator.
+        
+        @return self
         """
         return self
     
@@ -497,6 +499,7 @@
         Public method to advance to the next error.
         
         @return self
+        @exception StopIteration raised to indicate the end of the iteration
         """
         spell = self._spelling_dict
         if spell:

eric ide

mercurial