summaryrefslogtreecommitdiff
path: root/numpy/core/arrayprint.py
diff options
context:
space:
mode:
authorchanley <chanley@gmail.com>2007-07-02 16:09:57 +0000
committerchanley <chanley@gmail.com>2007-07-02 16:09:57 +0000
commit00f72c962db4a4cb152bdd548dedac916ed582cd (patch)
tree2e56e34357914a39abb87084aca3a56e55bf69ef /numpy/core/arrayprint.py
parentc7dd6e4bfa5a6d8647b5c424a2c5cec9e23c73b9 (diff)
downloadnumpy-00f72c962db4a4cb152bdd548dedac916ed582cd.tar.gz
Fix new typo added to arrayprint.py in r3877
Diffstat (limited to 'numpy/core/arrayprint.py')
-rw-r--r--numpy/core/arrayprint.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/arrayprint.py b/numpy/core/arrayprint.py
index 005a6fcac..30035bbff 100644
--- a/numpy/core/arrayprint.py
+++ b/numpy/core/arrayprint.py
@@ -150,7 +150,7 @@ def _array2string(a, max_line_width, precision, suppress_small, separator=' ',
format_function = _boolFormatter
elif issubclass(dtypeobj, _nt.integer):
max_str_len = max(len(str(maximum.reduce(data))),
- len(str(mininum.reduce(data))))
+ len(str(minimum.reduce(data))))
format = '%' + str(max_str_len) + 'd'
format_function = lambda x: _formatInteger(x, format)
elif issubclass(dtypeobj, _nt.floating):