diff options
| author | Ivan Ukhov <ivan.ukhov@gmail.com> | 2014-10-15 06:36:13 +0200 |
|---|---|---|
| committer | Ivan Ukhov <ivan.ukhov@gmail.com> | 2014-10-15 06:36:13 +0200 |
| commit | a923b4ff6dcbf201441f820840e402a12d154e6d (patch) | |
| tree | eb07edcb70de279dc94d769567ee0f8bb6ff990d | |
| parent | af991574890820b178faef9764c51da72cde236d (diff) | |
| download | rust-a923b4ff6dcbf201441f820840e402a12d154e6d.tar.gz rust-a923b4ff6dcbf201441f820840e402a12d154e6d.zip | |
Fix the description of raw byte string literals
| -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 3c4b973002e..da3892c0ef1 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` |
