summaryrefslogtreecommitdiff
path: root/numpy/core/arrayprint.py
diff options
context:
space:
mode:
authorAllan Haldane <ealloc@gmail.com>2021-03-19 12:42:57 -0400
committerGitHub <noreply@github.com>2021-03-19 12:42:57 -0400
commitf14a028404e0457b7ca049fdd4968675cbc9cf54 (patch)
treeeb265e616f0cba5c12d7490e3192cbbee97df9f2 /numpy/core/arrayprint.py
parent75bb1a80d104561c7a1870c86e6e5f0972cde5df (diff)
downloadnumpy-f14a028404e0457b7ca049fdd4968675cbc9cf54.tar.gz
Update numpy/core/arrayprint.py
Co-authored-by: Sebastian Berg <sebastian@sipsolutions.net>
Diffstat (limited to 'numpy/core/arrayprint.py')
-rw-r--r--numpy/core/arrayprint.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/core/arrayprint.py b/numpy/core/arrayprint.py
index 523820c33..e86986518 100644
--- a/numpy/core/arrayprint.py
+++ b/numpy/core/arrayprint.py
@@ -1053,9 +1053,9 @@ def format_float_scientific(x, precision=None, unique=True, trim='k',
Pad the exponent with zeros until it contains at least this many digits.
If omitted, the exponent will be at least 2 digits.
min_digits : non-negative integer or None, optional
- Minimum number of digits to print. Only has an effect if `unique=True`
- in which case additional digits past those necessary to uniquely
- identify the value may be printed, rounding the last additional digit.
+ Minimum number of digits to print. This only has an effect for `unique=True`.
+ In that case more digits than necessary to uniquely identify the value may
+ be printed. The last additional digit is rounded unbiased.
Returns
-------