Fix docstr in text.py (Trip to Strip) in rstrip

This commit is contained in:
Hedy Li 2020-07-12 06:41:59 +00:00 committed by GitHub
parent 368dd38c7f
commit 28d40b4cd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -406,7 +406,7 @@ class Text(JupyterMixin):
return count
def rstrip(self) -> None:
"""Trip whitespace from end of text."""
"""Strip whitespace from end of text."""
self.plain = self.plain.rstrip()
def rstrip_end(self, size: int):