--- a/eric6/QScintilla/MiniEditor.py Sat Dec 19 15:06:20 2020 +0100 +++ b/eric6/QScintilla/MiniEditor.py Sat Dec 19 15:22:26 2020 +0100 @@ -3213,7 +3213,7 @@ language (string) @param initTextDisplay flag indicating an initialization of the text display is required as well (boolean) - @keyparam pyname name of the pygments lexer to use (string) + @param pyname name of the pygments lexer to use (string) """ self.__bindLexer(filename, pyname=pyname) self.__textEdit.recolor() @@ -3282,7 +3282,7 @@ @param filename filename used to determine the associated lexer language (string) - @keyparam pyname name of the pygments lexer to use (string) + @param pyname name of the pygments lexer to use (string) """ if ( self.lexer_ is not None and @@ -3621,7 +3621,7 @@ @param line line number to go to @type int - @keyparam pos position in line to go to + @param pos position in line to go to @type int """ self.__textEdit.setCursorPosition(line - 1, pos - 1)