diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-05-26 05:28:50 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-05-26 05:28:50 (GMT) |
commit | b1d867f14965e2369d31a3fcdab5bca34b4d81b4 (patch) | |
tree | e12a80fb726447f7e1c09839aae24fd9277258ce /Objects/stringobject.c | |
parent | 5db0b3396e664affee09c0cb2094fdafc94acd94 (diff) | |
download | cpython-b1d867f14965e2369d31a3fcdab5bca34b4d81b4.zip cpython-b1d867f14965e2369d31a3fcdab5bca34b4d81b4.tar.gz cpython-b1d867f14965e2369d31a3fcdab5bca34b4d81b4.tar.bz2 |
Issue #27076: Doc, comment and test function name spelling fixes
Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
Diffstat (limited to 'Objects/stringobject.c')
-rw-r--r-- | Objects/stringobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/stringobject.c b/Objects/stringobject.c index f585ffc..e19df6e 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.c @@ -1627,7 +1627,7 @@ string_join(PyStringObject *self, PyObject *orig) #ifdef Py_USING_UNICODE if (PyUnicode_Check(item)) { /* Defer to Unicode join. - * CAUTION: There's no gurantee that the + * CAUTION: There's no guarantee that the * original sequence can be iterated over * again, so we must pass seq here. */ |