about summary refs log tree commit diff
diff options
context:
space:
mode:
authorIvan Ukhov <ivan.ukhov@gmail.com>2014-10-15 06:36:13 +0200
committerIvan Ukhov <ivan.ukhov@gmail.com>2014-10-15 06:36:13 +0200
commita923b4ff6dcbf201441f820840e402a12d154e6d (patch)
treeeb07edcb70de279dc94d769567ee0f8bb6ff990d
parentaf991574890820b178faef9764c51da72cde236d (diff)
downloadrust-a923b4ff6dcbf201441f820840e402a12d154e6d.tar.gz
rust-a923b4ff6dcbf201441f820840e402a12d154e6d.zip
Fix the description of raw byte string literals
-rw-r--r--src/doc/reference.md2
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`