diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2008-02-24 08:27:49 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2008-02-24 08:27:49 (GMT) |
commit | 114dd944deb53fe9961615f4e25e0af4ad14183a (patch) | |
tree | 95c49f0f86094659c4d8c8d245d900f3cd470d8b /Modules | |
parent | ed0a593a10328b069d2563ef6f00c31e1d02fe59 (diff) | |
download | cpython-114dd944deb53fe9961615f4e25e0af4ad14183a.zip cpython-114dd944deb53fe9961615f4e25e0af4ad14183a.tar.gz cpython-114dd944deb53fe9961615f4e25e0af4ad14183a.tar.bz2 |
Fix typo of hexidecimal
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/future_builtins.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/future_builtins.c b/Modules/future_builtins.c index d5c136a..686925d 100644 --- a/Modules/future_builtins.c +++ b/Modules/future_builtins.c @@ -14,7 +14,7 @@ but that conflict with builtins that already exist in Python 2.x.\n\ \n\ Functions:\n\ \n\ -hex(arg) -- Returns the hexidecimal representation of an integer\n\ +hex(arg) -- Returns the hexadecimal representation of an integer\n\ oct(arg) -- Returns the octal representation of an integer\n\ \n\ The typical usage of this module is to replace existing builtins in a\n\ |