Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/environment.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ Upper and lower case may both be used in the key name.
CIRCUITPY_SDCARD_USB = false # a boolean
delay = 0.75 # a float
FRENCH="œuvre" # unicode can be used
FRENCH2="\\u0153uvre" # same unicode string, using a 16-bit escape code
FRENCH3="\\U00000153uvre" # same unicode string, using a 32-bit escape code
STRING_WITH_ESCAPE_CODES="supported, including \\r\\n\\"\\\\"
FRENCH2="\u0153uvre" # same unicode string, using a 16-bit escape code
FRENCH3="\U00000153uvre" # same unicode string, using a 32-bit escape code
STRING_WITH_ESCAPE_CODES="supported, including \r \n \" \\"

Details of the TOML language subset
-----------------------------------
Expand Down
Loading