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