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
This commit is contained in:
bors 2014-10-17 07:32:17 +00:00
commit fa59bb0869

View file

@ -341,7 +341,7 @@ following forms:
escaped in order to denote its ASCII encoding `0x5C`.
Raw byte string literals do not process any escapes. They start with the
character `U+0072` (`r`), followed by `U+0062` (`b`), followed by zero or more
character `U+0062` (`b`), followed by `U+0072` (`r`), followed by zero or more
of the character `U+0023` (`#`), and a `U+0022` (double-quote) character. The
_raw string body_ is not defined in the EBNF grammar above: it can contain any
sequence of ASCII characters and is terminated only by another `U+0022`