diff --git a/README.md b/README.md index 4b739b8..a061b3e 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 elements using string as separator. ``` ```python