summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-03-10 19:52:16 (GMT)
committerGeorg Brandl <georg@python.org>2012-03-10 19:52:16 (GMT)
commita08e7e1c5d280d87b77b2b49b785a5eadcca93c1 (patch)
tree1ee811cd328c815fd7fd9862d8b41d411ecaf6cf
parentc7ceb2bc951b9e69d2bb148c80014dce080c431a (diff)
downloadcpython-a08e7e1c5d280d87b77b2b49b785a5eadcca93c1.zip
cpython-a08e7e1c5d280d87b77b2b49b785a5eadcca93c1.tar.gz
cpython-a08e7e1c5d280d87b77b2b49b785a5eadcca93c1.tar.bz2
Close #14248: fix typo.
-rw-r--r--Doc/whatsnew/3.3.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index 28294cb..bccb40d 100644
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -475,7 +475,7 @@ Some smaller changes made to the core Python language are:
(:issue:`12170`)
* A dict lookup now raises a :exc:`RuntimeError` if the dict is modified during
- the lookup. If you implement your own comparaison function for objects used
+ the lookup. If you implement your own comparison function for objects used
as dict keys and the dict is shared by multiple threads, access to the dict
should be protected by a lock.