diff options
author | P. L. Lim <2090236+pllim@users.noreply.github.com> | 2022-02-15 22:22:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-15 19:22:15 -0800 |
commit | 5a53fa9326047e33c251d238a6ce344980cbe038 (patch) | |
tree | 2b12839afcc606615cc63366bebcccd8fe178ef8 | |
parent | 00970056def72e5d1967bb85604a571c7bb52b00 (diff) | |
download | numpy-5a53fa9326047e33c251d238a6ce344980cbe038.tar.gz |
DOC: fix output spacing in arctan2 example (#21064)
-rw-r--r-- | numpy/core/code_generators/ufunc_docstrings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/code_generators/ufunc_docstrings.py b/numpy/core/code_generators/ufunc_docstrings.py index d9035fbab..ba3a3a188 100644 --- a/numpy/core/code_generators/ufunc_docstrings.py +++ b/numpy/core/code_generators/ufunc_docstrings.py @@ -512,7 +512,7 @@ add_newdoc('numpy.core.umath', 'arctan2', >>> np.arctan2([1., -1.], [0., 0.]) array([ 1.57079633, -1.57079633]) >>> np.arctan2([0., 0., np.inf], [+0., -0., np.inf]) - array([ 0. , 3.14159265, 0.78539816]) + array([0. , 3.14159265, 0.78539816]) """) |