summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2012-06-15 11:16:25 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2012-06-15 11:16:25 (GMT)
commit96f806bccbab50aa9af247cffd6a07d1c225827f (patch)
tree0219990e9d17be46970284ca12006c66c7607790 /Misc
parent807770ec1bead8aff0716384621638ed80e9f56b (diff)
downloadcpython-96f806bccbab50aa9af247cffd6a07d1c225827f.zip
cpython-96f806bccbab50aa9af247cffd6a07d1c225827f.tar.gz
cpython-96f806bccbab50aa9af247cffd6a07d1c225827f.tar.bz2
Fix typos in NEWS entry
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7d7d434..b02e1f2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -22,8 +22,8 @@ Library
-------
- Issue #15061: The inappropriately named hmac.secure_compare has been
- renamed to hash.compare_digest, restricted to operating on bytes inputs
- only and had its documentation updated to more acurrately reflect both its
+ renamed to hmac.compare_digest, restricted to operating on bytes inputs
+ only and had its documentation updated to more accurately reflect both its
intent and its limitations
- Issue #13841: Make child processes exit using sys.exit() on Windows.