From dd66141d5283ec0fe4199e4b9daa540dafa8c50d Mon Sep 17 00:00:00 2001 From: David Beazley Date: Sat, 30 May 2020 04:28:09 -0500 Subject: [PATCH] Fix typo --- Notes/01_Introduction/04_Strings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Notes/01_Introduction/04_Strings.md b/Notes/01_Introduction/04_Strings.md index 5a1957c..9e6fa49 100644 --- a/Notes/01_Introduction/04_Strings.md +++ b/Notes/01_Introduction/04_Strings.md @@ -54,7 +54,7 @@ an integer. You can specify an exact code-point value using the following escap a = '\xf1' # a = 'ñ' b = '\u2200' # b = '∀' c = '\U0001D122' # c = '𝄢' -d = '\N{FORALL}' # d = '∀' +d = '\N{FOR ALL}' # d = '∀' ``` The [Unicode Character Database](https://unicode.org/charts) is a reference for all