We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ea0ec9 commit 471fbe8Copy full SHA for 471fbe8
active/0000-ascii-literals.md
@@ -42,7 +42,8 @@ byte literals of type `u8` and
42
byte string literals of type `&'static [u8]` (or `[u8]`, post-DST).
43
They are identical to the existing character and string literals, except that:
44
45
-* They are prefixed with a `b` (for "binary"), to distinguish them
+* They are prefixed with a `b` (for "binary"), to distinguish them.
46
+ This is similar to the `r` prefix for raw strings.
47
* Unescaped code points in the body must be in the ASCII range: U+0000 to U+007F.
48
* `'\x5c' 'u' hex_digit 4` and `'\x5c' 'U' hex_digit 8` escapes are not allowed.
49
* `'\x5c' 'x' hex_digit 2` escapes represent a single byte rather than a code point.
0 commit comments