Skip to content

Commit

Permalink
Typofix
Browse files Browse the repository at this point in the history
  • Loading branch information
jnordberg committed May 28, 2022
1 parent 6a71d90 commit 561ae9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tortoise/utils/text.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def commit():
split_pos.append(pos)
if len(current) >= desired_length:
commit()
# treat end of quote as a boundary if its preceded by a space or newline
# treat end of quote as a boundary if its followed by a space or newline
elif in_quote and peek(1) == '"' and peek(2) in '\n ':
seek(2)
split_pos.append(pos)
Expand Down

0 comments on commit 561ae9a

Please sign in to comment.