eric6/QScintilla/SpellChecker.py

branch
maintenance
changeset 8043
0acf98cd089a
parent 7924
8a96736d465e
parent 7923
91e843545d9a
child 8273
698ae46f40a4
diff -r 866adc8c315b -r 0acf98cd089a eric6/QScintilla/SpellChecker.py
--- a/eric6/QScintilla/SpellChecker.py	Sun Jan 17 13:53:08 2021 +0100
+++ b/eric6/QScintilla/SpellChecker.py	Mon Feb 01 10:38:16 2021 +0100
@@ -37,10 +37,10 @@
         
         @param editor reference to the editor object (QScintilla.Editor)
         @param indicator spell checking indicator
-        @keyparam defaultLanguage the language to be used as the default
+        @param defaultLanguage the language to be used as the default
             (string). The string should be in language locale format
             (e.g. en_US, de).
-        @keyparam checkRegion reference to a function to check for a valid
+        @param checkRegion reference to a function to check for a valid
             region
         """
         super(SpellChecker, self).__init__(editor)
@@ -130,8 +130,8 @@
         
         @param lang the language to be used as the default (string).
             The string should be in language locale format (e.g. en_US, de).
-        @keyparam pwl name of the personal/project word list (string)
-        @keyparam pel name of the personal/project exclude list (string)
+        @param pwl name of the personal/project word list (string)
+        @param pel name of the personal/project exclude list (string)
         @return reference to the dictionary (enchant.Dict)
         """
         if not pwl:
@@ -171,8 +171,8 @@
         
         @param language the language to be used as the default (string).
             The string should be in language locale format (e.g. en_US, de).
-        @keyparam pwl name of the personal/project word list (string)
-        @keyparam pel name of the personal/project exclude list (string)
+        @param pwl name of the personal/project word list (string)
+        @param pel name of the personal/project exclude list (string)
         """
         self._spelling_lang = language
         self._spelling_dict = self._getDict(language, pwl=pwl,
@@ -316,7 +316,7 @@
         Public method to check the word at position pos.
         
         @param pos position to check at (integer)
-        @keyparam atEnd flag indicating the position is at the end of the word
+        @param atEnd flag indicating the position is at the end of the word
             to check (boolean)
         """
         spell = self._spelling_dict

eric ide

mercurial