[Python-checkins] Fix the miscellaneous typo (GH-17700)

Miss Islington (bot) webhook-mailer at python.org
Wed Dec 25 10:39:43 EST 2019


https://github.com/python/cpython/commit/527f9de6efdcf09983d0764be0b978ddc1fd1653
commit: 527f9de6efdcf09983d0764be0b978ddc1fd1653
branch: master
author: cocoatomo <cocoatomo77 at gmail.com>
committer: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
date: 2019-12-25T07:39:35-08:00
summary:

Fix the miscellaneous typo (GH-17700)



A character "i" is omitted.

files:
M Doc/c-api/code.rst

diff --git a/Doc/c-api/code.rst b/Doc/c-api/code.rst
index 45a6b4a753a72..6f8c41ccbf6e8 100644
--- a/Doc/c-api/code.rst
+++ b/Doc/c-api/code.rst
@@ -42,7 +42,7 @@ bound into a function.
 
 .. c:function:: PyCodeObject* PyCode_NewWithPosOnlyArgs(int argcount, int posonlyargcount, int kwonlyargcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names, PyObject *varnames, PyObject *freevars, PyObject *cellvars, PyObject *filename, PyObject *name, int firstlineno, PyObject *lnotab)
 
-   Similar to :c:func:`PyCode_New`, but with an extra "posonlyargcount" for positonal-only arguments.
+   Similar to :c:func:`PyCode_New`, but with an extra "posonlyargcount" for positional-only arguments.
 
    .. versionadded:: 3.8
 



More information about the Python-checkins mailing list