]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo of hexidecimal
authorNeal Norwitz <nnorwitz@gmail.com>
Sun, 24 Feb 2008 08:27:49 +0000 (08:27 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Sun, 24 Feb 2008 08:27:49 +0000 (08:27 +0000)
Misc/cheatsheet
Modules/future_builtins.c

index 4e9c01e51d894008ac105ec77f6a87c9e65b0ab2..605084aca856df84429c3eba9fdc8f6568ab7ed4 100644 (file)
@@ -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.
index d5c136a50f78a5d14079e6c34f4919dea25525b6..686925d317f1cbef139746d7a7dc6f9c7e0f6daf 100644 (file)
@@ -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\