tokens.md: remove sentence about the type of byte string literals

This is now covered in literal-expr.md
This commit is contained in:
Matthew Woodcraft 2024-01-21 23:34:37 +00:00
parent 09b003a80d
commit 7e3c5c3ea5
1 changed files with 1 additions and 1 deletions

View File

@ -274,7 +274,7 @@ preceded by the characters `U+0062` (`b`) and `U+0022` (double-quote), and
followed by the character `U+0022`. If the character `U+0022` is present within
the literal, it must be _escaped_ by a preceding `U+005C` (`\`) character.
Alternatively, a byte string literal can be a _raw byte string literal_, defined
below. The type of a byte string literal of length `n` is `&'static [u8; n]`.
below.
Some additional _escapes_ are available in either byte or non-raw byte string
literals. An escape starts with a `U+005C` (`\`) and continues with one of the