From 48a3dc186475b88f74dd70ef50e5483cc9031108 Mon Sep 17 00:00:00 2001 From: Lucas Mirelmann Date: Sat, 16 May 2026 11:45:22 +0200 Subject: [PATCH] Fix typo Add missing quote at the end of a string example. --- spec.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec.md b/spec.md index b99b3c6..64cc3fe 100644 --- a/spec.md +++ b/spec.md @@ -427,7 +427,7 @@ or is greater than U+10FFFF. ```python '\u0041' # "A", an ASCII letter (U+0041) '\u0414' # "Д", a Cyrillic capital letter (U+0414) -'\u754c # "界", a Chinese character (U+754C) +'\u754c' # "界", a Chinese character (U+754C) '\U0001F600' # "😀", an Emoji (U+1F600) ```