PEP 426: fix editing oversight

This commit is contained in:
Nick Coghlan 2013-02-24 01:10:49 +10:00
parent 92f4a2321d
commit c12443086c
1 changed files with 2 additions and 2 deletions

View File

@ -1006,9 +1006,9 @@ A compatible release clause omits the comparison operator and matches any
version that is expected to be compatible with the specified version.
For a given release identifier ``V.N``, the compatible release clause is
equivalent to the pair of comparison clauses::
approximately equivalent to the pair of comparison clauses::
>= V.N, < V+1
>= V.N, < V+1.dev0
where ``V+1`` is the next version after ``V``, as determined by
incrementing the last numeric component in ``V``. For example,