From a923b4ff6dcbf201441f820840e402a12d154e6d Mon Sep 17 00:00:00 2001 From: Ivan Ukhov Date: Wed, 15 Oct 2014 06:36:13 +0200 Subject: [PATCH] Fix the description of raw byte string literals --- src/doc/reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`