diff options
author | Martin Panter <vadmium+py@gmail.com> | 2017-01-24 00:30:06 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2017-01-24 00:30:06 (GMT) |
commit | 91a8866dc1c228c36177502393132d6372d0a67d (patch) | |
tree | 37274779003921815e58a90be6fc7cfb5d966214 /Objects/unicodeobject.c | |
parent | 8c79c70554aa535eb24477c924492db83716aae1 (diff) | |
download | cpython-91a8866dc1c228c36177502393132d6372d0a67d.zip cpython-91a8866dc1c228c36177502393132d6372d0a67d.tar.gz cpython-91a8866dc1c228c36177502393132d6372d0a67d.tar.bz2 |
Fix grammar in doc string, RST markup
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r-- | Objects/unicodeobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 0b79c5b..d3516fa 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -12201,7 +12201,7 @@ str.join as unicode_join Concatenate any number of strings. -The string whose method is called is inserted in between each given strings. +The string whose method is called is inserted in between each given string. The result is returned as a new string. Example: '.'.join(['ab', 'pq', 'rs']) -> 'ab.pq.rs' @@ -12209,7 +12209,7 @@ Example: '.'.join(['ab', 'pq', 'rs']) -> 'ab.pq.rs' static PyObject * unicode_join(PyObject *self, PyObject *iterable) -/*[clinic end generated code: output=6857e7cecfe7bf98 input=d8311e5ccbafbeb6]*/ +/*[clinic end generated code: output=6857e7cecfe7bf98 input=2f70422bfb8fa189]*/ { return PyUnicode_Join(self, iterable); } |