rephrase has_key doc
diff --git a/Doc/ACKS.txt b/Doc/ACKS.txt
index 7680d00..0bff6bd 100644
--- a/Doc/ACKS.txt
+++ b/Doc/ACKS.txt
@@ -16,6 +16,7 @@
* A. Amoroso
* Pehr Anderson
* Oliver Andrich
+ * Heidi Annexstad
* Jesús Cea Avión
* Daniel Barclay
* Chris Barker
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index f5a4e6c..00d420b 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -1924,7 +1924,8 @@
.. method:: has_key(key)
- ``dict.has_key(key)`` is equivalent to ``key in d``, but deprecated.
+ Test for the presence of *key* in the dictionary. :meth:`has_key` is
+ deprecated in favor of ``key in d``.
.. method:: items()