File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -222,7 +222,7 @@ def intword(value: NumberOrString, format: str = "%.1f") -> str:
222
222
223
223
Returns:
224
224
str: Friendly text representation as a string, unless the value passed could not
225
- be coaxed into an `int`.
225
+ be coaxed into an `int`.
226
226
"""
227
227
try :
228
228
if not math .isfinite (float (value )):
@@ -287,8 +287,8 @@ def apnumber(value: NumberOrString) -> str:
287
287
288
288
Returns:
289
289
str: For numbers 0-9, the number spelled out. Otherwise, the number. This always
290
- returns a string unless the value was not `int`-able, then `str(value)`
291
- is returned.
290
+ returns a string unless the value was not `int`-able, then `str(value)`
291
+ is returned.
292
292
"""
293
293
try :
294
294
if not math .isfinite (float (value )):
@@ -479,8 +479,8 @@ def clamp(
479
479
480
480
Returns:
481
481
str: Formatted number. The output is clamped between the indicated floor and
482
- ceil. If the number is larger than ceil or smaller than floor, the output will
483
- be prepended with a token indicating as such.
482
+ ceil. If the number is larger than ceil or smaller than floor, the output
483
+ will be prepended with a token indicating as such.
484
484
485
485
"""
486
486
if value is None :
You can’t perform that action at this time.
0 commit comments