From 2bd6df8c01441154393727139a33bb9ad9428b12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 5 Feb 2019 11:48:41 +0100 Subject: [PATCH] String update --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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