summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2023-01-10 09:42:14 (GMT)
committerGitHub <noreply@github.com>2023-01-10 09:42:14 (GMT)
commit65b01b23bca905d2b5ef62b03425f40ef522f314 (patch)
treea74e66196d517998644610699d466db80decc624 /Doc
parentf6decc57f7b31a131275fb03ff9f841c761a2865 (diff)
downloadcpython-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.rst2
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.