From d7943cb71d51bbf0e2ac715b08b8da2208d2800c Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sat, 17 May 2008 19:51:10 +0000 Subject: fix spelling --- Python/bltinmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python') 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); -- cgit v1.2.1