diff options
author | takanori-pskq <takanori17h@gmail.com> | 2020-10-26 14:11:44 +0900 |
---|---|---|
committer | takanori-pskq <takanori17h@gmail.com> | 2020-10-26 15:55:50 +0900 |
commit | d212ee4ceeb0a1ff8dba1c6d9e0cc54360e81a94 (patch) | |
tree | e47fa552685820a398a0366f811b30f82a301d93 /doc/source/reference/arrays.ndarray.rst | |
parent | fcba5a6c901717110b9767b418df410d7c8c6e73 (diff) | |
download | numpy-d212ee4ceeb0a1ff8dba1c6d9e0cc54360e81a94.tar.gz |
DOC: Fix some references
Diffstat (limited to 'doc/source/reference/arrays.ndarray.rst')
-rw-r--r-- | doc/source/reference/arrays.ndarray.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/reference/arrays.ndarray.rst b/doc/source/reference/arrays.ndarray.rst index 6b805904a..191367058 100644 --- a/doc/source/reference/arrays.ndarray.rst +++ b/doc/source/reference/arrays.ndarray.rst @@ -1,11 +1,11 @@ +.. currentmodule:: numpy + .. _arrays.ndarray: ****************************************** The N-dimensional array (:class:`ndarray`) ****************************************** -.. currentmodule:: numpy - An :class:`ndarray` is a (usually fixed-size) multidimensional container of items of the same type and size. The number of dimensions and items in an array is defined by its :attr:`shape <ndarray.shape>`, |