summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libarray.tex
diff options
context:
space:
mode:
authorJohannes Gijsbers <jlg@dds.nl>2004-09-11 16:50:06 (GMT)
committerJohannes Gijsbers <jlg@dds.nl>2004-09-11 16:50:06 (GMT)
commitd345225ae51874b036662e4d1ed0f3f25257661e (patch)
tree721ddd44c37bf8871d53d118b7ef8f83a8d0d228 /Doc/lib/libarray.tex
parent7a8c43ee6a1f9c50bec8cc5234eff8b1d5e61088 (diff)
downloadcpython-d345225ae51874b036662e4d1ed0f3f25257661e.zip
cpython-d345225ae51874b036662e4d1ed0f3f25257661e.tar.gz
cpython-d345225ae51874b036662e4d1ed0f3f25257661e.tar.bz2
Patch #1026384: fix two common typo's:
- accomodate -> accommodate - occured -> occurred Thanks George Yoshida!
Diffstat (limited to 'Doc/lib/libarray.tex')
-rw-r--r--Doc/lib/libarray.tex6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/lib/libarray.tex b/Doc/lib/libarray.tex
index e168e54..897310d 100644
--- a/Doc/lib/libarray.tex
+++ b/Doc/lib/libarray.tex
@@ -105,7 +105,7 @@ data from a file written on a machine with a different byte order.
\end{methoddesc}
\begin{methoddesc}[array]{count}{x}
-Return the number of occurences of \var{x} in the array.
+Return the number of occurrences of \var{x} in the array.
\end{methoddesc}
\begin{methoddesc}[array]{extend}{iterable}
@@ -147,7 +147,7 @@ append Unicode data to an array of some other type.
\begin{methoddesc}[array]{index}{x}
Return the smallest \var{i} such that \var{i} is the index of
-the first occurence of \var{x} in the array.
+the first occurrence of \var{x} in the array.
\end{methoddesc}
\begin{methoddesc}[array]{insert}{i, x}
@@ -174,7 +174,7 @@ do.
\end{methoddesc}
\begin{methoddesc}[array]{remove}{x}
-Remove the first occurence of \var{x} from the array.
+Remove the first occurrence of \var{x} from the array.
\end{methoddesc}
\begin{methoddesc}[array]{reverse}{}