[Python-checkins] r46298 - python/trunk/Doc/lib/libstdtypes.tex

andrew.kuchling python-checkins at python.org
Fri May 26 14:01:44 CEST 2006


Author: andrew.kuchling
Date: Fri May 26 14:01:44 2006
New Revision: 46298

Modified:
   python/trunk/Doc/lib/libstdtypes.tex
Log:
Typo fixes

Modified: python/trunk/Doc/lib/libstdtypes.tex
==============================================================================
--- python/trunk/Doc/lib/libstdtypes.tex	(original)
+++ python/trunk/Doc/lib/libstdtypes.tex	Fri May 26 14:01:44 2006
@@ -728,7 +728,7 @@
 \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


More information about the Python-checkins mailing list