summaryrefslogtreecommitdiff
path: root/numpy/linalg/linalg.py
diff options
context:
space:
mode:
authorPierre de Buyl <pdebuyl@pdebuyl.be>2016-09-06 14:42:08 +0200
committerPierre de Buyl <pdebuyl@pdebuyl.be>2016-09-06 14:42:08 +0200
commit2a55233b81a6ea18a57d1dd4f7bc5fff9f2fb681 (patch)
tree1a4a81faf9e59d0cabf9cbace9dc967bad60caa1 /numpy/linalg/linalg.py
parent773e3cad9a71cb9a7849d8e251fb8a99ab35d06b (diff)
downloadnumpy-2a55233b81a6ea18a57d1dd4f7bc5fff9f2fb681.tar.gz
DOC: change Numpy to NumPy in dosctrings and comments
The strings in error messages were left untouched
Diffstat (limited to 'numpy/linalg/linalg.py')
-rw-r--r--numpy/linalg/linalg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/linalg/linalg.py b/numpy/linalg/linalg.py
index a05b0ee8e..15c72fa02 100644
--- a/numpy/linalg/linalg.py
+++ b/numpy/linalg/linalg.py
@@ -677,7 +677,7 @@ def qr(a, mode='reduced'):
`a` is of type `matrix`, all the return values will be matrices too.
New 'reduced', 'complete', and 'raw' options for mode were added in
- Numpy 1.8 and the old option 'full' was made an alias of 'reduced'. In
+ NumPy 1.8 and the old option 'full' was made an alias of 'reduced'. In
addition the options 'full' and 'economic' were deprecated. Because
'full' was the previous default and 'reduced' is the new default,
backward compatibility can be maintained by letting `mode` default.