src/eric7/QScintilla/Lexers/LexerPygments.py

branch
eric7
changeset 9295
d14096c04126
parent 9293
7d9d916a9a9f
child 9413
80c06d472826
diff -r 3c12aacd98d8 -r d14096c04126 src/eric7/QScintilla/Lexers/LexerPygments.py
--- 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

eric ide

mercurial