File tree 1 file changed +8
-8
lines changed
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 | # 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 |
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