From fa7f89c417b486afea6904174821690a5abcba1b Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Tue, 14 Jul 2026 10:40:22 -0400 Subject: [PATCH] settings.toml (environment) doc had doubled backslashes --- docs/environment.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/environment.rst b/docs/environment.rst index 2c72b4f1004..7d0e41727d3 100644 --- a/docs/environment.rst +++ b/docs/environment.rst @@ -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 -----------------------------------