From bdb9182388292f320871c53916b5579e54066375 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 26 Dec 2018 13:25:35 +0100 Subject: [PATCH] Typos --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. ```