Skip to content

Commit 60cbdd9

Browse files
committed
gh-106318: Fix typo in the str.isnumeric() method docs
1 parent 33535e0 commit 60cbdd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/stdtypes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2320,7 +2320,7 @@ expression support in the :mod:`re` module).
23202320

23212321
>>> '0123456789'.isnumeric()
23222322
True
2323-
>>> '٠١٢٣٤٥٦٧٨٩'.isnumeric() # Arabic-indic digit zero to nine
2323+
>>> '٠١٢٣٤٥٦٧٨٩'.isnumeric() # Arabic-indic digits zero to nine
23242324
True
23252325
>>> ''.isnumeric() # Vulgar fraction one fifth
23262326
True

0 commit comments

Comments
 (0)