summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index ef824ea..40959c4 100644
--- a/README.rst
+++ b/README.rst
@@ -171,8 +171,8 @@ The :class:`SimpleSpec` object describes a range of accepted versions:
>>> s = SimpleSpec('>=0.1.1') # At least 0.1.1
>>> s.match(Version('0.1.1'))
True
- >>> s.match(Version('0.1.1-alpha1')) # pre-release satisfy version spec
- True
+ >>> s.match(Version('0.1.1-alpha1')) # pre-release doesn't satisfy version spec
+ False
>>> s.match(Version('0.1.0'))
False