summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-11-11 18:29:11 +0000
committerGeorg Brandl <georg@python.org>2006-11-11 18:29:11 +0000
commit361bc21c5161eb4d37db76b30ad5e413a2705ac6 (patch)
tree2baeb52bcc744ab7fb275a87df5369c013abee86
parent48b10075424e6970337e819a7819e150142016ad (diff)
downloadcpython-git-361bc21c5161eb4d37db76b30ad5e413a2705ac6.tar.gz
Bug #1594742: wrong word in stringobject doc.
-rw-r--r--Doc/lib/libstdtypes.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libstdtypes.tex b/Doc/lib/libstdtypes.tex
index 84ca938ae6..5bd6590cde 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.