Skip to content

Commit

Permalink
Undo regression, clarify instead (thanks @ehuss!)
Browse files Browse the repository at this point in the history
  • Loading branch information
bgeron committed Mar 23, 2020
1 parent 1c7cd72 commit d69a6d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tokens.md
Expand Up @@ -154,8 +154,8 @@ Line-breaks are allowed in string literals. A line-break is either a newline
(`U+000A`) or a pair of carriage return and newline (`U+000D`, `U+000A`). Both
byte sequences are normally translated to `U+000A`, but as a special exception,
when an unescaped `U+005C` character (`\`) occurs immediately before the
line-break, the `U+005C` character, and all whitespace at the beginning of the
next line are ignored. Thus `a` and `b` are equal:
line-break, then the `U+005C` character, the line-break, and all whitespace at the
beginning of the next line are ignored. Thus `a` and `b` are equal:

```rust
let a = "foobar";
Expand Down

0 comments on commit d69a6d1

Please sign in to comment.