Skip to content

Commit 74ecd23

Browse files
authored
Update Doc/library/stdtypes.rst
1 parent 409a9a0 commit 74ecd23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/stdtypes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1834,7 +1834,7 @@ expression support in the :mod:`re` module).
18341834
Return ``True`` if the string ends with the specified *suffix*, otherwise return
18351835
``False``. *suffix* can also be a tuple of suffixes to look for. With optional
18361836
*start*, test beginning at that position. With optional *end*, stop comparing
1837-
at that position. Use the *start* and *end* is equivalent to
1837+
at that position. Using *start* and *end* is equivalent to
18381838
``str[start:end].endswith(suffix)``. For example::
18391839

18401840
>>> 'Python'.endswith('on')

0 commit comments

Comments
 (0)