[Python-checkins] peps: Fix PEP 520 typos.

eric.snow python-checkins at python.org
Tue Jun 7 23:17:03 EDT 2016


https://hg.python.org/peps/rev/ddf3758db956
changeset:   6356:ddf3758db956
user:        Eric Snow <ericsnowcurrently at gmail.com>
date:        Tue Jun 07 20:16:56 2016 -0700
summary:
  Fix PEP 520 typos.

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


diff --git a/pep-0520.txt b/pep-0520.txt
--- a/pep-0520.txt
+++ b/pep-0520.txt
@@ -120,13 +120,13 @@
 
 Names starting and ending with "__" are reserved for use by the
 interpreter.  In practice they should not be relevant to the users of
-``__definition_order__``.  Instead, for early everyone they would only
+``__definition_order__``.  Instead, for nearly everyone they would only
 be clutter, causing the same extra work for everyone.
 
 Why is __definition_order__ even necessary?
 -------------------------------------------
 
-Since the definition order is not preserved in ``__dict__``, it would be
+Since the definition order is not preserved in ``__dict__``, it is
 lost once class definition execution completes.  Classes *could*
 explicitly set the attribute as the last thing in the body.  However,
 then independent decorators could only make use of classes that had done

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


More information about the Python-checkins mailing list