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.
229229
230230##### Characters and strings
231231
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 ` |
240240
241241##### Byte escapes
242242
You can’t perform that action at this time.
0 commit comments