Book: Update raw/byte string literal in syntax index

The raw byte string literal syntax in the syntax index was incorrect. Also added links to the reference for raw and/or byte string literals.
This commit is contained in:
Jethro Beekman 2015-10-28 14:32:48 -07:00
parent 65623dba0d
commit 14eef41378

View File

@ -99,9 +99,9 @@
* `'ident`: named lifetime or loop label. See [Lifetimes], [Loops (Loops Labels)]. * `'ident`: named lifetime or loop label. See [Lifetimes], [Loops (Loops Labels)].
* `…u8`, `…i32`, `…f64`, `…usize`, …: numeric literal of specific type. * `…u8`, `…i32`, `…f64`, `…usize`, …: numeric literal of specific type.
* `"…"`: string literal. See [Strings]. * `"…"`: string literal. See [Strings].
* `r"…"`, `r#"…"#`, `r##"…"##`, …: raw string literal. * `r"…"`, `r#"…"#`, `r##"…"##`, …: raw string literal, escape characters are not processed. See [Reference (Raw String Literals)].
* `b"…"`: byte string literal. * `b"…"`: byte string literal, constructs a `[u8]` instead of a string. See [Reference (Byte String Literals)].
* `rb"…"`, `rb#"…"#`, `rb##"…"##`, …: raw byte string literal. * `br"…"`, `br#"…"#`, `br##"…"##`, …: raw byte string literal, combination of raw and byte string literal. See [Reference (Raw Byte String Literals)].
* `'…'`: character literal. See [Primitive Types (`char`)]. * `'…'`: character literal. See [Primitive Types (`char`)].
* `b'…'`: ASCII byte literal. * `b'…'`: ASCII byte literal.
@ -217,6 +217,9 @@
[Primitive Types (Tuple Indexing)]: primitive-types.html#tuple-indexing [Primitive Types (Tuple Indexing)]: primitive-types.html#tuple-indexing
[Primitive Types (Tuples)]: primitive-types.html#tuples [Primitive Types (Tuples)]: primitive-types.html#tuples
[Raw Pointers]: raw-pointers.html [Raw Pointers]: raw-pointers.html
[Reference (Byte String Literals)]: ../reference.html#byte-string-literals
[Reference (Raw Byte String Literals)]: ../reference.html#raw-byte-string-literals
[Reference (Raw String Literals)]: ../reference.html#raw-string-literals
[References and Borrowing]: references-and-borrowing.html [References and Borrowing]: references-and-borrowing.html
[Strings]: strings.html [Strings]: strings.html
[Structs (Update syntax)]: structs.html#update-syntax [Structs (Update syntax)]: structs.html#update-syntax