[Python-checkins] devguide: #19312, #19314: fix a couple of typos in the compiler page of the devguide.

ezio.melotti python-checkins at python.org
Mon Oct 21 02:20:45 CEST 2013


http://hg.python.org/devguide/rev/640fae50d1bb
changeset:   648:640fae50d1bb
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Mon Oct 21 03:20:32 2013 +0300
summary:
  #19312, #19314: fix a couple of typos in the compiler page of the devguide.  Patch by Martin Matusiak.

files:
  compiler.rst |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/compiler.rst b/compiler.rst
--- a/compiler.rst
+++ b/compiler.rst
@@ -24,7 +24,7 @@
 Starting with Python 2.5, the above steps are now used.  This change
 was done to simplify compilation by breaking it into three steps.
 The purpose of this document is to outline how the latter three steps
-of the process works.
+of the process work.
 
 This document does not touch on how parsing works beyond what is needed
 to explain what is needed for compilation.  It is also not exhaustive
@@ -45,7 +45,7 @@
 ``node *`` structs (as defined in Include/node.h).
 
 Querying data from the node structs can be done with the following
-macros (which are all defined in Include/token.h):
+macros (which are all defined in Include/node.h):
 
 ``CHILD(node *, int)``
         Returns the nth child of the node using zero-offset indexing

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


More information about the Python-checkins mailing list