diff options
author | Robert McGibbon <rmcgibbo@gmail.com> | 2015-03-01 22:53:19 -0800 |
---|---|---|
committer | Robert McGibbon <rmcgibbo@gmail.com> | 2015-03-02 12:00:18 -0800 |
commit | 6ca778d275ade854cfc81a6a975230c4ccd9402c (patch) | |
tree | bbabe2a612cb69b4fd6fa33926383804a11e0c33 /numpy/matrixlib/defmatrix.py | |
parent | fba3140f31e67487666529e66241047517a72bcb (diff) | |
download | numpy-6ca778d275ade854cfc81a6a975230c4ccd9402c.tar.gz |
DOC: Reconcile docstrings and function signatures where they disagree
Fixed typos in docstrings were updated for functions where the parameter
names in the docstring didn't match the function signature.
Diffstat (limited to 'numpy/matrixlib/defmatrix.py')
-rw-r--r-- | numpy/matrixlib/defmatrix.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/matrixlib/defmatrix.py b/numpy/matrixlib/defmatrix.py index d0b39ad9f..ffd4578ba 100644 --- a/numpy/matrixlib/defmatrix.py +++ b/numpy/matrixlib/defmatrix.py @@ -74,6 +74,8 @@ def asmatrix(data, dtype=None): ---------- data : array_like Input data. + dtype : data-type + Data-type of the output matrix. Returns ------- |