summaryrefslogtreecommitdiff
path: root/numpy/add_newdocs.py
diff options
context:
space:
mode:
authorMark Wiebe <mwwiebe@gmail.com>2011-01-26 20:58:35 -0800
committerMark Wiebe <mwwiebe@gmail.com>2011-01-27 21:40:15 -0800
commit01c78669494a05a539cdbb83614b6c3312e5401e (patch)
tree5b246d04e228bf307d9615b7c33a05db66158507 /numpy/add_newdocs.py
parent3e58b8db5d2ff4b850f63373e1b1d1c812454264 (diff)
downloadnumpy-01c78669494a05a539cdbb83614b6c3312e5401e.tar.gz
ENH: ufunc: Add new iterator version of generalized ufuncs
Diffstat (limited to 'numpy/add_newdocs.py')
-rw-r--r--numpy/add_newdocs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/add_newdocs.py b/numpy/add_newdocs.py
index 9bd714a8a..c3876afb0 100644
--- a/numpy/add_newdocs.py
+++ b/numpy/add_newdocs.py
@@ -1518,7 +1518,7 @@ add_newdoc('numpy.core', 'einsum',
parameter to allow the conversions.
order : 'C', 'F', 'A', or 'K'
Controls the memory layout of the output. 'C' means it should
- be Fortran contiguous. 'F' means it should be Fortran contiguous,
+ be C contiguous. 'F' means it should be Fortran contiguous,
'A' means it should be 'F' if the inputs are all 'F', 'C' otherwise.
'K' means it should be as close to the layout as the inputs as
is possible, including arbitrarily permuted axes.