summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/neps/new-iterator-ufunc.rst8
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/neps/new-iterator-ufunc.rst b/doc/neps/new-iterator-ufunc.rst
index f5e4f7883..0ea96cb42 100644
--- a/doc/neps/new-iterator-ufunc.rst
+++ b/doc/neps/new-iterator-ufunc.rst
@@ -3,6 +3,12 @@
:Content-Type: text/x-rst
:Created: 25-Nov-2010
+*****************
+Table of Contents
+*****************
+
+.. contents::
+
********
Abstract
********
@@ -1261,7 +1267,7 @@ First, here is the definition of the ``luf`` function.::
casting='safe', buffersize=8192)
c = np.empty(...)
- luf(lambda i,j:i+j, a, b, order='K',
+ luf(lambda i,j:i+j, a, b, out=c, order='K',
casting='safe', buffersize=8192)
"""