diff options
author | Georg Brandl <georg@python.org> | 2008-06-04 11:30:26 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-06-04 11:30:26 (GMT) |
commit | e5d68aceb529934e75d505bbfaf867e02493a1bc (patch) | |
tree | 4b3704507702b98e0ce4107403a72093a5d6b9fc /Doc/c-api/conversion.rst | |
parent | f342bfcbd4c5648507fca5504cedb295927bf5b5 (diff) | |
download | cpython-e5d68aceb529934e75d505bbfaf867e02493a1bc.zip cpython-e5d68aceb529934e75d505bbfaf867e02493a1bc.tar.gz cpython-e5d68aceb529934e75d505bbfaf867e02493a1bc.tar.bz2 |
Fix misspelling.
Diffstat (limited to 'Doc/c-api/conversion.rst')
-rw-r--r-- | Doc/c-api/conversion.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/c-api/conversion.rst b/Doc/c-api/conversion.rst index 8fc424d..f926094 100644 --- a/Doc/c-api/conversion.rst +++ b/Doc/c-api/conversion.rst @@ -83,11 +83,11 @@ 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 + Case insensitive comparison of strings. The functions works almost identical to :cfunc:`strcmp` except that it ignores the case. .. cfunction:: char * PyOS_strnicmp(char *s1, char *s2, Py_ssize_t size) - Case insensitive comparsion of strings. The functions works almost + Case insensitive comparison of strings. The functions works almost identical to :cfunc:`strncmp` except that it ignores the case. |