From cfe6b41b336f4469c50508f568facdad8035e735 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Thu, 7 Mar 2019 23:27:50 +0100 Subject: [PATCH] String --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 48e00c3..4b739b8 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 string elements using str as separator. + = .join() # Joins elements using string as separator. ``` ```python