Skip to content

Commit

Permalink
fix(docs): don't allow multiline continuous by one \
Browse files Browse the repository at this point in the history
  • Loading branch information
watcol committed Jul 2, 2022
1 parent 77f8566 commit 7582cc8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docs/language.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ an empty text).
stmt = "foo"
stmt2 = "bar"
stmt3 = \
# Empty lines in line continuouses are allowed.
\ # Empty lines in line continuouses are allowed.
"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do" + \
"eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad" + \
"minim veniam, quis nostrud exercitation ullamco laboris nisi ut" + \
Expand Down Expand Up @@ -537,8 +537,7 @@ key = "foo"
## Terms
- "Whitespace" means tab (`U+0009`) or space (`U+0020`).
- "Newline" means a string sequence starts with line feed (`U+000A`) or
carriage return (`U+000D`), and contains only tabs, spaces, line feeds,
- "Newline" means line feed (`U+000A`) or carriage return (`U+000D`).
carriage returns or comments.
- "Parenthesis" means left and right of round brackets (`()`), curly brackets
(`{}`), or square brackets (`[]`).
Expand Down

0 comments on commit 7582cc8

Please sign in to comment.