Skip to content

Commit

Permalink
Fixed doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Genarito committed Nov 24, 2021
1 parent 31c53d8 commit 04a4a3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gura/GuraParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 04a4a3e

Please sign in to comment.