fix int2str docstring

This commit is contained in:
InspectorCaracal 2024-04-06 19:38:35 -06:00 committed by GitHub
parent 6dd9442cef
commit 3684edb172
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2885,7 +2885,7 @@ def int2str(number, adjective=False):
Args:
number (int): The number to convert. Floats will be converted to ints.
adjective (int): If set, map 1->1st, 2->2nd etc. If unset, map 1->one, 2->two etc.
adjective (bool): If True, map 1->1st, 2->2nd etc. If unset or False, map 1->one, 2->two etc.
up to twelve.
Return:
str: The number expressed as a string.