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: