Skip to content

Commit ce01277

Browse files
author
andrew.kuchling
committed
Docstring typo.
git-svn-id: http://svn.python.org/projects/python/trunk@66767 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 6951855 commit ce01277

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Modules/_codecsmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Decodes obj using the codec registered for encoding. encoding defaults\n\
115115
to the default encoding. errors may be given to set a different error\n\
116116
handling scheme. Default is 'strict' meaning that encoding errors raise\n\
117117
a ValueError. Other possible values are 'ignore' and 'replace'\n\
118-
as well as any other name registerd with codecs.register_error that is\n\
118+
as well as any other name registered with codecs.register_error that is\n\
119119
able to handle ValueErrors.");
120120

121121
static PyObject *

Modules/cjkcodecs/multibytecodec.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ PyDoc_STRVAR(MultibyteCodec_Decode__doc__,
3636
Decodes `string' using I, an MultibyteCodec instance. errors may be given\n\
3737
to set a different error handling scheme. Default is 'strict' meaning\n\
3838
that encoding errors raise a UnicodeDecodeError. Other possible values\n\
39-
are 'ignore' and 'replace' as well as any other name registerd with\n\
39+
are 'ignore' and 'replace' as well as any other name registered with\n\
4040
codecs.register_error that is able to handle UnicodeDecodeErrors.");
4141

4242
static char *codeckwarglist[] = {"input", "errors", NULL};

0 commit comments

Comments
 (0)