summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-10-05 01:26:06 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-10-05 01:26:06 (GMT)
commit17f1eddcfe886fbb11a71550978e37533e19d79e (patch)
treed341a6f72c93d85d9ed2cb8a3c7eb988142a1a5a
parent93d7dda914c95c6d011b09ab86e0364e8eac55fb (diff)
downloadcpython-17f1eddcfe886fbb11a71550978e37533e19d79e.zip
cpython-17f1eddcfe886fbb11a71550978e37533e19d79e.tar.gz
cpython-17f1eddcfe886fbb11a71550978e37533e19d79e.tar.bz2
Add missing comma.
-rw-r--r--Doc/library/enum.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst
index 9d9e46e..f09c60c 100644
--- a/Doc/library/enum.rst
+++ b/Doc/library/enum.rst
@@ -595,7 +595,7 @@ alias::
This is a useful example for subclassing Enum to add or change other
behaviors as well as disallowing aliases. If the only desired change is
- disallowing aliases the :func:`unique` decorator can be used instead.
+ disallowing aliases, the :func:`unique` decorator can be used instead.
Planet