diff --git a/README.md b/README.md index 8d2cc7c..a715a26 100644 --- a/README.md +++ b/README.md @@ -217,7 +217,7 @@ String = .startswith() # Pass tuple of strings for multiple options. = .endswith() # Pass tuple of strings for multiple options. = .index() # Returns first index of a substring. - = .isnumeric() # True if str contains only numeric characters. + = .isnumeric() # True if string contains only numeric characters. = textwrap.wrap(, width) # Nicely breakes string into lines. ```