summaryrefslogtreecommitdiff
path: root/Python/bltinmodule.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-05-17 19:51:10 +0000
committerBenjamin Peterson <benjamin@python.org>2008-05-17 19:51:10 +0000
commitd7943cb71d51bbf0e2ac715b08b8da2208d2800c (patch)
tree10dc34fe5400db1570ec731572fa3d7043f614c6 /Python/bltinmodule.c
parent79a922d6df18e0c0e508905aebc8f4fa28052aac (diff)
downloadcpython-git-d7943cb71d51bbf0e2ac715b08b8da2208d2800c.tar.gz
fix spelling
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r--Python/bltinmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index 5c30e03fcf..45f4081aa0 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -1186,7 +1186,7 @@ builtin_hex(PyObject *self, PyObject *v)
if (nb != NULL && nb->nb_hex != NULL) {
if (PyErr_WarnPy3k("In 3.x, hex() converts "
- "the result of __index__ to hexidecimal.",
+ "the result of __index__ to hexadecimal.",
1) < 0)
return NULL;
res = (*nb->nb_hex)(v);