File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -229,14 +229,14 @@ cases mentioned in [Number literals](#number-literals) below.
229
229
230
230
##### Characters and strings
231
231
232
- | | Example | Number of ` # ` pairs allowed | Available characters | Escapes | Equivalent to |
233
- | ---| ---------| -----------------------------| ----------------------| ---------| ---------------|
234
- | [ Character] ( #character-literals ) | ` 'H' ` | ` N/A ` | All unicode | ` \' ` & [ Byte escapes ] ( #byte-escapes ) & [ Unicode escapes ] ( #unicode-escapes ) | ` N/A ` |
235
- | [ String] ( #string-literals ) | ` "hello" ` | ` N/A ` | All unicode | ` \" ` & [ Byte escapes ] ( #byte-escapes ) & [ Unicode escapes ] ( #unicode-escapes ) | ` N/A ` |
236
- | [ Raw] ( #raw-string-literals ) | ` r## "hello"## ` | ` 0... ` | All unicode | ` N/A ` | ` N/A ` |
237
- | [ Byte] ( #byte-literals ) | ` b'H' ` | ` N/A ` | All ASCII | ` \' ` & [ Byte escapes ] ( #byte-escapes ) | ` u8 ` |
238
- | [ Byte string] ( #byte-string-literals ) | ` b"hello" ` | ` N/A ` | All ASCII | ` \" ` & [ Byte escapes ] ( #byte-escapes ) | ` &'static [u8] ` |
239
- | [ Raw byte string] ( #raw-byte-string-literals ) | ` br## "hello"## ` | ` 0... ` | All ASCII | ` N/A ` | ` &'static [u8] ` (unsure...not stated) |
232
+ | | Example | # sets | Characters | Escapes |
233
+ | ---------------------------------------------- | ---------------| -------- | ------------- | ------ ---------------|
234
+ | [ Character] ( #character-literals ) | 'H' | N/A | All Unicode | \' & [ Byte] ( #byte-escapes ) & [ Unicode] ( #unicode-escapes ) |
235
+ | [ String] ( #string-literals ) | "hello" | N/A | All Unicode | \" & [ Byte] ( #byte-escapes ) & [ Unicode] ( #unicode-escapes ) |
236
+ | [ Raw] ( #raw-string-literals ) | r# "hello"# | 0... | All Unicode | N/A |
237
+ | [ Byte] ( #byte-literals ) | b'H' | N/A | All ASCII | \' & [ Byte] ( #byte-escapes ) |
238
+ | [ Byte string] ( #byte-string-literals ) | b"hello" | N/A | All ASCII | \" & [ Byte] ( #byte-escapes ) |
239
+ | [ Raw byte string] ( #raw-byte-string-literals ) | br#"hello"# | 0... | All ASCII | N/A |
240
240
241
241
##### Byte escapes
242
242
You can’t perform that action at this time.
0 commit comments