--- a/src/eric7/QScintilla/Lexers/LexerPygments.py Tue Aug 23 19:33:07 2022 +0200 +++ b/src/eric7/QScintilla/Lexers/LexerPygments.py Tue Aug 23 19:35:42 2022 +0200 @@ -655,7 +655,7 @@ Public method to return the stream comment strings. @return dictionary containing the start and end stream comment strings - @type dict of {"start": str, "end": str} + @rtype dict of {"start": str, "end": str} """ try: return self.__streamCommentString @@ -668,7 +668,7 @@ stream comment. @return flag indicating stream comment is available - @type bool + @rtype bool """ return self.name() in self.__streamCommentString @@ -677,7 +677,7 @@ Public method to return the box comment strings. @return dictionary containing the start, middle and end box comment strings - @type dict of {"start": str, "middle": str, "end": str} + @rtype dict of {"start": str, "middle": str, "end": str} """ try: return self.__boxCommentString @@ -690,6 +690,6 @@ box comment. @return flag box comment is available - @type bool + @rtype bool """ return self.name() in self.__boxCommentString