From f1aca817e912731453789496f224d947cbdab06f Mon Sep 17 00:00:00 2001 From: Philip Tellis Date: Thu, 17 Dec 2020 10:54:04 -0500 Subject: [PATCH] typo: startswith -> endswith --- source/docs/str/endswith.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/docs/str/endswith.rst b/source/docs/str/endswith.rst index 87ae5b5..da81689 100644 --- a/source/docs/str/endswith.rst +++ b/source/docs/str/endswith.rst @@ -8,7 +8,7 @@ Returns a Boolean stating whether a string ends with the specified suffix. Syntax ------ -**str**. *startswith(suffix[, start[, end]])* +**str**. *endswith(suffix[, start[, end]])* *suffix* Required. The substring looked for. *suffix* can also be a tuple of suffixes to look for.