summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2004-04-17 11:57:40 (GMT)
committerRaymond Hettinger <python@rcn.com>2004-04-17 11:57:40 (GMT)
commite5fced781bbf892a498bd2422b49d9ac1a2d6352 (patch)
tree12d8756a86d05ed00324307553d5a06a021215b1
parentb4fb86243e7c20c7c186e43ba0a35ed98badc0e0 (diff)
downloadcpython-e5fced781bbf892a498bd2422b49d9ac1a2d6352.zip
cpython-e5fced781bbf892a498bd2422b49d9ac1a2d6352.tar.gz
cpython-e5fced781bbf892a498bd2422b49d9ac1a2d6352.tar.bz2
SF bug #936827: PyNumber_And() 's description
Fix typo.
-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 b38bc91..152f1a4 100644
--- a/Doc/api/abstract.tex
+++ b/Doc/api/abstract.tex
@@ -517,7 +517,7 @@ determination.
\begin{cfuncdesc}{PyObject*}{PyNumber_And}{PyObject *o1, PyObject *o2}
- Returns the ``bitwise and'' of \var{o2} and \var{o2} on success and
+ Returns the ``bitwise and'' of \var{o1} and \var{o2} on success and
\NULL{} on failure. This is the equivalent of the Python expression
\samp{\var{o1} \&\ \var{o2}}.
\end{cfuncdesc}