diff options
author | Georg Brandl <georg@python.org> | 2006-11-11 18:29:15 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-11-11 18:29:15 (GMT) |
commit | c33b7488de1dcdbcff709503d7b4ada8bbc0a620 (patch) | |
tree | 332f73c2044790a95d25dc2c4cf0cf22e5ab8908 /Doc | |
parent | 511350bee97d68d58aaa78fb045d4ef103dc4bfa (diff) | |
download | cpython-c33b7488de1dcdbcff709503d7b4ada8bbc0a620.zip cpython-c33b7488de1dcdbcff709503d7b4ada8bbc0a620.tar.gz cpython-c33b7488de1dcdbcff709503d7b4ada8bbc0a620.tar.bz2 |
Bug #1594742: wrong word in stringobject doc.
(backport from rev. 52731)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libstdtypes.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libstdtypes.tex b/Doc/lib/libstdtypes.tex index 84ca938..5bd6590 100644 --- a/Doc/lib/libstdtypes.tex +++ b/Doc/lib/libstdtypes.tex @@ -834,7 +834,7 @@ boundaries. Line breaks are not included in the resulting list unless start\optional{, end}}} Return \code{True} if string starts with the \var{prefix}, otherwise return \code{False}. \var{prefix} can also be a tuple of -suffixes to look for. With optional \var{start}, test string beginning at +prefixes to look for. With optional \var{start}, test string beginning at that position. With optional \var{end}, stop comparing string at that position. |