summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-02 12:10:23 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-02 12:10:23 (GMT)
commitd65c9496da3485ac077fa8fd374b061afdd3605e (patch)
tree70d446dd505e744bcdf7638e6dc31fde8d4d9310 /Include
parent7462b64911f1e2df2de2285ddbf8b156b5cdc418 (diff)
downloadcpython-d65c9496da3485ac077fa8fd374b061afdd3605e.zip
cpython-d65c9496da3485ac077fa8fd374b061afdd3605e.tar.gz
cpython-d65c9496da3485ac077fa8fd374b061afdd3605e.tar.bz2
Issue #25523: Further a-to-an corrections.
Diffstat (limited to 'Include')
-rw-r--r--Include/unicodeobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h
index d7b2ace..f19d9bf 100644
--- a/Include/unicodeobject.h
+++ b/Include/unicodeobject.h
@@ -965,7 +965,7 @@ _PyUnicodeWriter_WriteSubstring(_PyUnicodeWriter *writer,
Py_ssize_t end
);
-/* Append a ASCII-encoded byte string.
+/* Append an ASCII-encoded byte string.
Return 0 on success, raise an exception and return -1 on error. */
PyAPI_FUNC(int)
_PyUnicodeWriter_WriteASCIIString(_PyUnicodeWriter *writer,
@@ -2041,7 +2041,7 @@ PyAPI_FUNC(PyObject *) PyUnicode_RichCompare(
int op /* Operation: Py_EQ, Py_NE, Py_GT, etc. */
);
-/* Apply a argument tuple or dictionary to a format string and return
+/* Apply an argument tuple or dictionary to a format string and return
the resulting Unicode string. */
PyAPI_FUNC(PyObject *) PyUnicode_Format(