diff --git a/README.md b/README.md index 31d25cc..2bf9165 100644 --- a/README.md +++ b/README.md @@ -197,8 +197,10 @@ is_function = callable() String ------ ```python - = .strip('') - = .split(sep=None, maxsplit=-1) # Splits on any whitespace char by default. + = .strip() # Strips all whitespace characters. + = .strip('') # Strips all passed characters. + = .split() # Splits on any whitespace character. + = .split(sep=None, maxsplit=-1) # Splits on 'sep' at most 'maxsplit' times. = .join() = .replace(old_str, new_str) ```