diff options
author | Michael Seifert <michaelseifert04@yahoo.de> | 2017-08-18 02:35:24 +0200 |
---|---|---|
committer | Michael Seifert <michaelseifert04@yahoo.de> | 2017-08-18 02:35:24 +0200 |
commit | e7c8e62bdc915360653e79c63f3a0b6128dc020f (patch) | |
tree | e2588730ad8861a7b15033c32173acf6afefb8c1 /numpy/add_newdocs.py | |
parent | 773ac68f901b0f87bb48fd10f11b9c45b21ca031 (diff) | |
download | numpy-e7c8e62bdc915360653e79c63f3a0b6128dc020f.tar.gz |
DOC: Fix link in numpy.ndarray.copy method (missing backticks)
[skip ci]
Diffstat (limited to 'numpy/add_newdocs.py')
-rw-r--r-- | numpy/add_newdocs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/add_newdocs.py b/numpy/add_newdocs.py index 827dcfbdb..687204fc1 100644 --- a/numpy/add_newdocs.py +++ b/numpy/add_newdocs.py @@ -3418,7 +3418,7 @@ add_newdoc('numpy.core.multiarray', 'ndarray', ('copy', Controls the memory layout of the copy. 'C' means C-order, 'F' means F-order, 'A' means 'F' if `a` is Fortran contiguous, 'C' otherwise. 'K' means match the layout of `a` as closely - as possible. (Note that this function and :func:numpy.copy are very + as possible. (Note that this function and :func:`numpy.copy` are very similar, but have different default values for their order= arguments.) |