Skip to content

Commit 96c3864

Browse files
authored
Merge pull request #11119 from dhalbert/fix-settings.toml-escape-code-doc
settings.toml (environment) documentation had doubled backslashes
2 parents b737f76 + fa7f89c commit 96c3864

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/environment.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ Upper and lower case may both be used in the key name.
4242
CIRCUITPY_SDCARD_USB = false # a boolean
4343
delay = 0.75 # a float
4444
FRENCH="œuvre" # unicode can be used
45-
FRENCH2="\\u0153uvre" # same unicode string, using a 16-bit escape code
46-
FRENCH3="\\U00000153uvre" # same unicode string, using a 32-bit escape code
47-
STRING_WITH_ESCAPE_CODES="supported, including \\r\\n\\"\\\\"
45+
FRENCH2="\u0153uvre" # same unicode string, using a 16-bit escape code
46+
FRENCH3="\U00000153uvre" # same unicode string, using a 32-bit escape code
47+
STRING_WITH_ESCAPE_CODES="supported, including \r \n \" \\"
4848
4949
Details of the TOML language subset
5050
-----------------------------------

0 commit comments

Comments
 (0)