src/eric7/QScintilla/Lexers/Lexer.py

branch
eric7
changeset 9295
d14096c04126
parent 9293
7d9d916a9a9f
child 9413
80c06d472826
diff -r 3c12aacd98d8 -r d14096c04126 src/eric7/QScintilla/Lexers/Lexer.py
--- a/src/eric7/QScintilla/Lexers/Lexer.py	Tue Aug 23 19:33:07 2022 +0200
+++ b/src/eric7/QScintilla/Lexers/Lexer.py	Tue Aug 23 19:35:42 2022 +0200
@@ -45,7 +45,7 @@
         Public method to return the comment string.
 
         @return comment string
-        @type str
+        @rtype str
         """
         return self.commentString
 
@@ -64,7 +64,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}
         """
         return self.streamCommentString
 
@@ -74,7 +74,7 @@
         stream comment.
 
         @return flag indicating stream comment is available
-        @type bool
+        @rtype bool
         """
         return (
             self.streamCommentString["start"] != ""
@@ -86,7 +86,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}
         """
         return self.boxCommentString
 
@@ -96,7 +96,7 @@
         box comment.
 
         @return flag box comment is available
-        @type bool
+        @rtype bool
         """
         return (
             (self.boxCommentString["start"] != "")

eric ide

mercurial