diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2006-05-26 12:01:44 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2006-05-26 12:01:44 (GMT) |
commit | a0fcf502dfef079c6dabd595f6d159be14dea299 (patch) | |
tree | 9c500934cf3904d7e206e48ee96a9f4b2aeafa66 | |
parent | 57640f5c575ce284b041595c238f8ac615f1618d (diff) | |
download | cpython-a0fcf502dfef079c6dabd595f6d159be14dea299.zip cpython-a0fcf502dfef079c6dabd595f6d159be14dea299.tar.gz cpython-a0fcf502dfef079c6dabd595f6d159be14dea299.tar.bz2 |
Typo fixes
-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 896f53f..798585a 100644 --- a/Doc/lib/libstdtypes.tex +++ b/Doc/lib/libstdtypes.tex @@ -728,7 +728,7 @@ a prefix; rather, all combinations of its values are stripped: \end{methoddesc} \begin{methoddesc}[string]{partition}{sep} -Splits the string at the first occurence of \var{sep}, and return +Split the string at the first occurrence of \var{sep}, and return a 3-tuple containing the part before the separator, the separator itself, and the part after the separator. If the separator is not found, return a 3-tuple containing the string itself, followed by |