[Python-checkins] peps: Grammatical fixes

brett.cannon python-checkins at python.org
Sun May 12 00:28:34 CEST 2013


http://hg.python.org/peps/rev/2782d983f66d
changeset:   4886:2782d983f66d
user:        Brett Cannon <brett at python.org>
date:        Sat May 11 18:28:29 2013 -0400
summary:
  Grammatical fixes

files:
  pep-0435.txt |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/pep-0435.txt b/pep-0435.txt
--- a/pep-0435.txt
+++ b/pep-0435.txt
@@ -418,7 +418,7 @@
 Pickling
 --------
 
-Enumerations be pickled and unpickled::
+Enumerations can be pickled and unpickled::
 
     >>> from enum.tests.fruit import Fruit
     >>> from pickle import dumps, loads
@@ -426,7 +426,7 @@
     True
 
 The usual restrictions for pickling apply: picklable enums must be defined in
-the top level of a module, since unpickling requires them to be imporatable
+the top level of a module, since unpickling requires them to be importable
 from that module.
 
 

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


More information about the Python-checkins mailing list