diff options
| author | bors <bors@rust-lang.org> | 2014-10-17 07:32:17 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-10-17 07:32:17 +0000 |
| commit | fa59bb08699f2b9905adf20f103b6334e73f6b9f (patch) | |
| tree | a951ae10df096512331df3632832f9f2f2d48da5 /src/doc/reference.md | |
| parent | 0f8df80804b2c7e89acc3c8e046a1ac7a90124f6 (diff) | |
| parent | a923b4ff6dcbf201441f820840e402a12d154e6d (diff) | |
| download | rust-fa59bb08699f2b9905adf20f103b6334e73f6b9f.tar.gz rust-fa59bb08699f2b9905adf20f103b6334e73f6b9f.zip | |
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
Diffstat (limited to 'src/doc/reference.md')
| -rw-r--r-- | src/doc/reference.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md index dfdadb3546b..11bf895341b 100644 --- a/src/doc/reference.md +++ b/src/doc/reference.md @@ -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` |
