diff --git a/README.md b/README.md index 5389f32..1cba262 100644 --- a/README.md +++ b/README.md @@ -486,8 +486,8 @@ Format ### Ints ```python {90:c} # 'Z'. Unicode character with value 90. -{90:b} # '1011010'. Number 90 in binary. -{90:X} # '5A'. Number 90 in uppercase hexadecimal. +{90:b} # '1011010'. Binary representation of the int. +{90:X} # '5A'. Hexadecimal with upper-case letters. ``` diff --git a/index.html b/index.html index 3017307..db30be2 100644 --- a/index.html +++ b/index.html @@ -56,7 +56,7 @@
.5
, .25
, …).{90:c} # 'Z'. Unicode character with value 90.
-{90:b} # '1011010'. Number 90 in binary.
-{90:X} # '5A'. Number 90 in uppercase hexadecimal.
+{90:b} # '1011010'. Binary representation of the int.
+{90:X} # '5A'. Hexadecimal with upper-case letters.
<int> = int(<float/str/bool>) # Or: math.trunc(<float>)
@@ -2944,7 +2944,7 @@ $ deactivate # Deactivates the active