[Python-checkins] cpython (3.5): Issue #27745: Fix some typos in Argument Clinic howto, by Lele Gaifax

martin.panter python-checkins at python.org
Fri Aug 12 08:18:38 EDT 2016


https://hg.python.org/cpython/rev/129c601e7bfa
changeset:   102616:129c601e7bfa
branch:      3.5
user:        Martin Panter <vadmium+py at gmail.com>
date:        Fri Aug 12 12:02:03 2016 +0000
summary:
  Issue #27745: Fix some typos in Argument Clinic howto, by Lele Gaifax

files:
  Doc/howto/clinic.rst |  8 ++++----
  1 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Doc/howto/clinic.rst b/Doc/howto/clinic.rst
--- a/Doc/howto/clinic.rst
+++ b/Doc/howto/clinic.rst
@@ -653,7 +653,7 @@
           Functions that use *any* other approach for parsing arguments
           should *almost never* be converted to Argument Clinic using
           optional groups.  Functions using optional groups currently
-          cannot have accurate sigantures in Python, because Python just
+          cannot have accurate signatures in Python, because Python just
           doesn't understand the concept.  Please avoid using optional
           groups wherever possible.
 
@@ -1337,7 +1337,7 @@
 
 While changing Clinic's output in this manner can be a boon to readability,
 it may result in Clinic code using types before they are defined, or
-your code attempting to use Clinic-generated code befire it is defined.
+your code attempting to use Clinic-generated code before it is defined.
 These problems can be easily solved by rearranging the declarations in your file,
 or moving where Clinic's generated code goes.  (This is why the default behavior
 of Clinic is to output everything into the current block; while many people
@@ -1381,7 +1381,7 @@
 
   ``buffer``
     A text buffer where you can save text for later.  Text sent
-    here is appended to the end of any exsiting text.  It's an
+    here is appended to the end of any existing text.  It's an
     error to have any text left in the buffer when Clinic finishes
     processing a file.
 
@@ -1653,7 +1653,7 @@
 
 However, this causes one ticklish problem: where should Argument Clinic put this
 extra code when using the "block" output preset?  It can't go in the output block,
-because that could be decativated by the ``#ifdef``.  (That's the whole point!)
+because that could be deactivated by the ``#ifdef``.  (That's the whole point!)
 
 In this situation, Argument Clinic writes the extra code to the "buffer" destination.
 This may mean that you get a complaint from Argument Clinic::

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


More information about the Python-checkins mailing list