diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-03-25 10:00:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-25 10:00:03 (GMT) |
commit | db5bf524699f217bfe8d49e652882e763e903099 (patch) | |
tree | aea3f883645e66cf5205e969396848b3914707b7 | |
parent | 7513c6b6fe50dd651abe4d9b0c2f207b032cabfe (diff) | |
download | cpython-db5bf524699f217bfe8d49e652882e763e903099.zip cpython-db5bf524699f217bfe8d49e652882e763e903099.tar.gz cpython-db5bf524699f217bfe8d49e652882e763e903099.tar.bz2 |
[3.10] gh-103025: fix a ctypes doc typo (GH-103026) (#103030)
* gh-103025: fix two ctypes doc issues (GH-103026)
(cherry picked from commit 0708437ad043657f992cb985fd5c37e1ac052f93)
-rw-r--r-- | Doc/library/ctypes.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst index d1922aa..8d4230a 100644 --- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -375,8 +375,8 @@ that they can be converted to the required C data type:: .. _ctypes-calling-variadic-functions: -Calling varadic functions -^^^^^^^^^^^^^^^^^^^^^^^^^ +Calling variadic functions +^^^^^^^^^^^^^^^^^^^^^^^^^^ On a lot of platforms calling variadic functions through ctypes is exactly the same as calling functions with a fixed number of parameters. On some platforms, and in |