From e36fecff3fbbc6f8fba39be215c202772a36f54c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Thu, 7 Mar 2019 23:22:41 +0100 Subject: [PATCH] String --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4b739b8..48e00c3 100644 --- a/README.md +++ b/README.md @@ -245,7 +245,7 @@ String ```python = .split() # Splits on any whitespace character. = .split(sep=None, maxsplit=-1) # Splits on 'sep' str at most 'maxsplit' times. - = .join() # Joins elements using string as separator. + = .join() # Joins string elements using str as separator. ``` ```python