Fix small typo.

This commit is contained in:
Barry Warsaw 2013-04-12 10:24:13 -04:00
parent bca02a6e41
commit 50fe21c75b
1 changed files with 3 additions and 2 deletions

View File

@ -255,8 +255,9 @@ item names and integer values, they will not be identical::
>>> Colors.blue is not OtherColors.blue
True
These enumeration values are not equal, nor do they and hence may exist
in the same set, or as distinct keys in the same dictionary::
Because ``Colors`` and ``OtherColors`` are unrelated enumerations,
their values are not equal, and thus they may exist in the same set,
or as distinct keys in the same dictionary::
>>> Colors.red == OtherColors.red
False