aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2012-06-15 21:16:25 +1000
committerNick Coghlan <ncoghlan@gmail.com>2012-06-15 21:16:25 +1000
commit96f806bccbab50aa9af247cffd6a07d1c225827f (patch)
tree0219990e9d17be46970284ca12006c66c7607790
parent807770ec1bead8aff0716384621638ed80e9f56b (diff)
downloadcpython-96f806bccbab50aa9af247cffd6a07d1c225827f.tar.gz
cpython-96f806bccbab50aa9af247cffd6a07d1c225827f.zip
Fix typos in NEWS entry
-rw-r--r--Misc/NEWS4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7d7d4344ad1..b02e1f214f5 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.