[Python-checkins] [3.7] bpo-36799: Fix typo in ctypes.rst (GH-13104) (GH-13341)

Stéphane Wirtel webhook-mailer at python.org
Wed May 15 11:53:30 EDT 2019


https://github.com/python/cpython/commit/4fd7f56ee78a07ebadf034affc2e36db14c85c00
commit: 4fd7f56ee78a07ebadf034affc2e36db14c85c00
branch: 3.7
author: Stéphane Wirtel <stephane at wirtel.be>
committer: GitHub <noreply at github.com>
date: 2019-05-15T17:53:25+02:00
summary:

[3.7] bpo-36799: Fix typo in ctypes.rst (GH-13104) (GH-13341)

(cherry picked from commit 133fc89ca)

Co-authored-by: Yavor Konstantinov <7553015+sehnsucht13 at users.noreply.github.com>

files:
M Doc/library/ctypes.rst

diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst
index 500aad8858f2..60a2ec1c5e89 100644
--- a/Doc/library/ctypes.rst
+++ b/Doc/library/ctypes.rst
@@ -2365,7 +2365,7 @@ other data types containing pointer type fields.
       and so on).  Later assignments to the :attr:`_fields_` class variable will
       raise an AttributeError.
 
-      It is possible to defined sub-subclasses of structure types, they inherit
+      It is possible to define sub-subclasses of structure types, they inherit
       the fields of the base class plus the :attr:`_fields_` defined in the
       sub-subclass, if any.
 
@@ -2413,7 +2413,7 @@ other data types containing pointer type fields.
          td.lptdesc = POINTER(some_type)
          td.u.lptdesc = POINTER(some_type)
 
-   It is possible to defined sub-subclasses of structures, they inherit the
+   It is possible to define sub-subclasses of structures, they inherit the
    fields of the base class.  If the subclass definition has a separate
    :attr:`_fields_` variable, the fields specified in this are appended to the
    fields of the base class.



More information about the Python-checkins mailing list