[Python-checkins] cpython: #20677: fix typo in enum docs. Patch by Saimadhav Heblikar.

ezio.melotti python-checkins at python.org
Sun Feb 23 16:13:44 CET 2014


http://hg.python.org/cpython/rev/569589d3abb5
changeset:   89334:569589d3abb5
parent:      89331:659fff320e1e
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Sun Feb 23 17:13:31 2014 +0200
summary:
  #20677: fix typo in enum docs.  Patch by Saimadhav Heblikar.

files:
  Doc/library/enum.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst
--- a/Doc/library/enum.rst
+++ b/Doc/library/enum.rst
@@ -139,7 +139,7 @@
     >>> Color['green']
     <Color.green: 2>
 
-If have an enum member and need its :attr:`name` or :attr:`value`::
+If you have an enum member and need its :attr:`name` or :attr:`value`::
 
     >>> member = Color.red
     >>> member.name

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list