Skip to content

Commit

Permalink
fix remove un-escaped newline
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornregnell committed Jan 22, 2025
1 parent 67081dd commit 484b6f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions docs/langSpec-GENERATED.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ The source code of a Model consists of Unicode text.
### Preprocessing

The source code is pre-processed as follows:
* The source code is split by '
' into a sequence of lines.
* The source code is split into a sequence of lines.
* Each line with index i is given an integer value `leading(i)` corresponding to the number of leading whitespace characters.
* The lexical analyzer inserts Indent(n) and Outdent(n) tokens that represent regions of indented code based on leading(i), where n denotes indent level.

Expand Down
2 changes: 1 addition & 1 deletion src/test/scala/langSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ The source code of a Model consists of Unicode text.
### Preprocessing

The source code is pre-processed as follows:
* The source code is split by '\n' into a sequence of lines.
* The source code is split into a sequence of lines.
* Each line with index i is given an integer value `leading(i)` corresponding to the number of leading whitespace characters.
* The lexical analyzer inserts Indent(n) and Outdent(n) tokens that represent regions of indented code based on leading(i), where n denotes indent level.

Expand Down

0 comments on commit 484b6f9

Please sign in to comment.