diff --git a/README.md b/README.md index c4a272f..b433f80 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 from start and end. - = .strip('') # Strips all passed characters from start and end. + = .strip() # Strips all whitespace characters from both ends. + = .strip('') # Strips all passed characters from both ends. ``` ```python