Skip to content

Commit d69a6d1

Browse files
authored
Undo regression, clarify instead (thanks @ehuss!)
1 parent 1c7cd72 commit d69a6d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tokens.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ Line-breaks are allowed in string literals. A line-break is either a newline
154154
(`U+000A`) or a pair of carriage return and newline (`U+000D`, `U+000A`). Both
155155
byte sequences are normally translated to `U+000A`, but as a special exception,
156156
when an unescaped `U+005C` character (`\`) occurs immediately before the
157-
line-break, the `U+005C` character, and all whitespace at the beginning of the
158-
next line are ignored. Thus `a` and `b` are equal:
157+
line-break, then the `U+005C` character, the line-break, and all whitespace at the
158+
beginning of the next line are ignored. Thus `a` and `b` are equal:
159159

160160
```rust
161161
let a = "foobar";

0 commit comments

Comments
 (0)