diff --git a/README.md b/README.md index 6e429db..c4a272f 100644 --- a/README.md +++ b/README.md @@ -226,8 +226,8 @@ from numbers import Number, Integral, Real, Rational, Complex String ------ ```python - = .strip() # Strips all whitespace characters. - = .strip('') # Strips all passed characters. + = .strip() # Strips all whitespace characters from start and end. + = .strip('') # Strips all passed characters from start and end. ``` ```python