summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2004-01-04 03:12:46 (GMT)
committerRaymond Hettinger <python@rcn.com>2004-01-04 03:12:46 (GMT)
commitf29d58a80b6c4acd5e2371be6fae922c1d021ee9 (patch)
tree78a4a98691cb0ff476593ee1b0a6d6c62ae712be
parent9280b9852b807bc42991d75f886d31f7d83dbf53 (diff)
downloadcpython-f29d58a80b6c4acd5e2371be6fae922c1d021ee9.zip
cpython-f29d58a80b6c4acd5e2371be6fae922c1d021ee9.tar.gz
cpython-f29d58a80b6c4acd5e2371be6fae922c1d021ee9.tar.bz2
Fix small factual error.
-rw-r--r--Doc/api/abstract.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/api/abstract.tex b/Doc/api/abstract.tex
index 1acbef9..f19928f 100644
--- a/Doc/api/abstract.tex
+++ b/Doc/api/abstract.tex
@@ -342,7 +342,7 @@ determination.
\begin{cfuncdesc}{int}{PyObject_Length}{PyObject *o}
\cfuncline{int}{PyObject_Size}{PyObject *o}
Return the length of object \var{o}. If the object \var{o} provides
- both sequence and mapping protocols, the sequence length is
+ either the sequence and mapping protocols, the sequence length is
returned. On error, \code{-1} is returned. This is the equivalent
to the Python expression \samp{len(\var{o})}.\bifuncindex{len}
\end{cfuncdesc}