diff options
author | Hugo van Kemenade <hugovk@users.noreply.github.com> | 2023-01-10 09:42:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-10 09:42:14 (GMT) |
commit | 65b01b23bca905d2b5ef62b03425f40ef522f314 (patch) | |
tree | a74e66196d517998644610699d466db80decc624 /Doc | |
parent | f6decc57f7b31a131275fb03ff9f841c761a2865 (diff) | |
download | cpython-65b01b23bca905d2b5ef62b03425f40ef522f314.zip cpython-65b01b23bca905d2b5ef62b03425f40ef522f314.tar.gz cpython-65b01b23bca905d2b5ef62b03425f40ef522f314.tar.bz2 |
[3.10] Fix typos in Doc folder (GH-100880). (#100915)
Co-authored-by: Semen Zhydenko <semen.zhydenko@gmail.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/ctypes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst index 077a205..d1922aa 100644 --- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -390,7 +390,7 @@ regular, non-variadic, function arguments: libc.printf.argtypes = [ctypes.c_char_p] -Because specifying the attribute does inhibit portability it is adviced to always +Because specifying the attribute does inhibit portability it is advised to always specify ``argtypes`` for all variadic functions. |