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