eric6/QScintilla/SpellChecker.py

changeset 7900
72b88fb20261
parent 7781
607a6098cb44
child 7923
91e843545d9a
--- a/eric6/QScintilla/SpellChecker.py	Sat Dec 19 15:06:20 2020 +0100
+++ b/eric6/QScintilla/SpellChecker.py	Sat Dec 19 15:22:26 2020 +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