summaryrefslogtreecommitdiff
path: root/Include/codecs.h
diff options
context:
space:
mode:
Diffstat (limited to 'Include/codecs.h')
-rw-r--r--Include/codecs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/codecs.h b/Include/codecs.h
index 8a9041b..851bc9f 100644
--- a/Include/codecs.h
+++ b/Include/codecs.h
@@ -146,14 +146,14 @@ PyAPI_FUNC(PyObject *) PyCodec_Decoder(
const char *encoding
);
-/* Get a IncrementalEncoder object for the given encoding. */
+/* Get an IncrementalEncoder object for the given encoding. */
PyAPI_FUNC(PyObject *) PyCodec_IncrementalEncoder(
const char *encoding,
const char *errors
);
-/* Get a IncrementalDecoder object function for the given encoding. */
+/* Get an IncrementalDecoder object function for the given encoding. */
PyAPI_FUNC(PyObject *) PyCodec_IncrementalDecoder(
const char *encoding,