Skip to content

Commit fa59bb0

Browse files
committed
auto merge of #18052 : IvanUkhov/rust/raw-byte-string-literals, r=aturon
Hello, The pull request fixes a typo in the description of raw string literals in [reference.md](https://github.com/rust-lang/rust/blob/master/src/doc/reference.md#byte-and-byte-string-literals). Regards, Ivan
2 parents 0f8df80 + a923b4f commit fa59bb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ following forms:
341341
escaped in order to denote its ASCII encoding `0x5C`.
342342

343343
Raw byte string literals do not process any escapes. They start with the
344-
character `U+0072` (`r`), followed by `U+0062` (`b`), followed by zero or more
344+
character `U+0062` (`b`), followed by `U+0072` (`r`), followed by zero or more
345345
of the character `U+0023` (`#`), and a `U+0022` (double-quote) character. The
346346
_raw string body_ is not defined in the EBNF grammar above: it can contain any
347347
sequence of ASCII characters and is terminated only by another `U+0022`

0 commit comments

Comments
 (0)