From 04a4a3e1f6643eac4798f7c033164944ad37c240 Mon Sep 17 00:00:00 2001 From: Genarito Date: Tue, 23 Nov 2021 22:56:01 -0300 Subject: [PATCH] Fixed doc --- gura/GuraParser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gura/GuraParser.py b/gura/GuraParser.py index 202f383..aca8ca3 100644 --- a/gura/GuraParser.py +++ b/gura/GuraParser.py @@ -710,7 +710,7 @@ def basic_string(self) -> MatchResult: is_multiline = quote == '"""' - # NOTE: A newline immediately following the opening delimiter will be trimmed. All other whitespace and + # NOTE: a newline immediately following the opening delimiter will be trimmed. All other whitespace and # newline characters remain intact. if is_multiline: if self.maybe_char('\n') is not None: @@ -761,7 +761,7 @@ def literal_string(self) -> MatchResult: is_multiline = quote == "'''" - # NOTE: A newline immediately following the opening delimiter will be trimmed. All other whitespace and + # NOTE: a newline immediately following the opening delimiter will be trimmed. All other whitespace and # newline characters remain intact. if is_multiline: if self.maybe_char('\n') is not None: