Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dd66141

Browse files
committed
Fix typo
1 parent 1fca335 commit dd66141

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Notes/01_Introduction/04_Strings.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ an integer. You can specify an exact code-point value using the following escap
5454
a = '\xf1' # a = 'ñ'
5555
b = '\u2200' # b = '∀'
5656
c = '\U0001D122' # c = '𝄢'
57-
d = '\N{FORALL}' # d = '∀'
57+
d = '\N{FOR ALL}' # d = '∀'
5858
```
5959

6060
The [Unicode Character Database](https://unicode.org/charts) is a reference for all

0 commit comments

Comments
 (0)