From 114dd944deb53fe9961615f4e25e0af4ad14183a Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Sun, 24 Feb 2008 08:27:49 +0000 Subject: [PATCH] Fix typo of hexidecimal --- Misc/cheatsheet | 4 ++-- Modules/future_builtins.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Misc/cheatsheet b/Misc/cheatsheet index 4e9c01e51d..605084aca8 100644 --- a/Misc/cheatsheet +++ b/Misc/cheatsheet @@ -565,8 +565,8 @@ d Signed integer decimal. i Signed integer decimal. o Unsigned octal. u Unsigned decimal. -x Unsigned hexidecimal (lowercase). -X Unsigned hexidecimal (uppercase). +x Unsigned hexadecimal (lowercase). +X Unsigned hexadecimal (uppercase). e Floating point exponential format (lowercase). E Floating point exponential format (uppercase). f Floating point decimal format. diff --git a/Modules/future_builtins.c b/Modules/future_builtins.c index d5c136a50f..686925d317 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\ -- 2.40.0