Fix a typo.
This commit is contained in:
Julin S 2021-12-13 22:45:18 +05:30 committed by GitHub
parent 773ff9e1c7
commit 621208878f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ accepting malicious code.
The possible issues generally can't be solved in Python itself without The possible issues generally can't be solved in Python itself without
excessive restrictions of the language. excessive restrictions of the language.
They should be solved in code edirors and review tools They should be solved in code editors and review tools
(such as *diff* displays), by enforcing project-specific policies, (such as *diff* displays), by enforcing project-specific policies,
and by raising awareness of individual programmers. and by raising awareness of individual programmers.
@ -259,7 +259,7 @@ Python strings are collections of *Unicode codepoints*, not “characters”.
For reasons like compatibility with earlier encodings, Unicode often has For reasons like compatibility with earlier encodings, Unicode often has
several ways to encode what is essentially a single “character”. several ways to encode what is essentially a single “character”.
For example, all are these different ways of writing ``Å`` as a Python string, For example, all these are different ways of writing ``Å`` as a Python string,
each of which is unequal to the others. each of which is unequal to the others.
* ``"\N{LATIN CAPITAL LETTER A WITH RING ABOVE}"`` (1 codepoint) * ``"\N{LATIN CAPITAL LETTER A WITH RING ABOVE}"`` (1 codepoint)