summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/conversion.rst
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-07-12 20:16:19 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-07-12 20:16:19 (GMT)
commit90f36730e2d50abbcaa395dc217a2213bc45a9f2 (patch)
tree6b70b0f12fe0aedfb8531edddbe58cb7dd58a437 /Doc/c-api/conversion.rst
parent9c87a40786837062ece9b8cafb4843949853befa (diff)
downloadcpython-90f36730e2d50abbcaa395dc217a2213bc45a9f2.zip
cpython-90f36730e2d50abbcaa395dc217a2213bc45a9f2.tar.gz
cpython-90f36730e2d50abbcaa395dc217a2213bc45a9f2.tar.bz2
fix various doc typos #3320
Diffstat (limited to 'Doc/c-api/conversion.rst')
-rw-r--r--Doc/c-api/conversion.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/c-api/conversion.rst b/Doc/c-api/conversion.rst
index 400fb2c..5a747ef 100644
--- a/Doc/c-api/conversion.rst
+++ b/Doc/c-api/conversion.rst
@@ -89,15 +89,15 @@ The following functions provide locale-independent string to number conversions.
.. cfunction:: char * PyOS_stricmp(char *s1, char *s2)
- Case insensitive comparsion of strings. The functions works almost
- identical to :cfunc:`strcmp` except that it ignores the case.
+ Case insensitive comparison of strings. The function works almost
+ identically to :cfunc:`strcmp` except that it ignores the case.
.. versionadded:: 2.6
.. cfunction:: char * PyOS_strnicmp(char *s1, char *s2, Py_ssize_t size)
- Case insensitive comparsion of strings. The functions works almost
- identical to :cfunc:`strncmp` except that it ignores the case.
+ Case insensitive comparison of strings. The function works almost
+ identically to :cfunc:`strncmp` except that it ignores the case.
.. versionadded:: 2.6