From 006e7b9b19096d858477be74a1299afa5d97a8cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 25 Dec 2018 18:51:42 +0100 Subject: [PATCH] Format --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a2d4974..e04d3a2 100644 --- a/README.md +++ b/README.md @@ -204,7 +204,7 @@ String ```python = .split() # Splits on any whitespace character. = .split(sep=None, maxsplit=-1) # Splits on 'sep' at most 'maxsplit' times. - = .join() # Joins elements using as separator. + = .join() # Joins elements using string as separator. ``` ```python