diff options
author | Ross Barnowski <rossbar@berkeley.edu> | 2020-09-29 15:08:09 -0700 |
---|---|---|
committer | Ross Barnowski <rossbar@berkeley.edu> | 2020-09-29 15:08:09 -0700 |
commit | ab81a55dba9294aac6926d2921b147c791488ae3 (patch) | |
tree | 79e3c8c796e8c5ed8d282f236ddfbc4a80194c21 /doc/source/user | |
parent | cb107d1ca6ac633702650a21152de7d05d31862a (diff) | |
download | numpy-ab81a55dba9294aac6926d2921b147c791488ae3.tar.gz |
DOC: rm incorrect alias from recarray user article.
Diffstat (limited to 'doc/source/user')
-rw-r--r-- | doc/source/user/basics.rec.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/user/basics.rec.rst b/doc/source/user/basics.rec.rst index f579b0d85..7380ef635 100644 --- a/doc/source/user/basics.rec.rst +++ b/doc/source/user/basics.rec.rst @@ -576,7 +576,7 @@ Record Arrays As an optional convenience numpy provides an ndarray subclass, :class:`numpy.recarray`, and associated helper functions in the -:mod:`numpy.lib.recfunctions` submodule (aliased as ``numpy.rec``), that allows +:mod:`numpy.lib.recfunctions` submodule, that allows access to fields of structured arrays by attribute instead of only by index. Record arrays also use a special datatype, :class:`numpy.record`, that allows field access by attribute on the structured scalars obtained from the array. |