diff options
author | Bradley Dice <bdice@bradleydice.com> | 2020-09-17 03:06:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-17 11:06:41 +0300 |
commit | 60a1e10c4593736b188b38e7d7c51aefb213af6a (patch) | |
tree | 20a71584c6a2f10c03defcb6ef63f4880ef7e865 /numpy/core/multiarray.py | |
parent | bde2119e80d14a21950285f2d872b29506c7b851 (diff) | |
download | numpy-60a1e10c4593736b188b38e7d7c51aefb213af6a.tar.gz |
DOC: Fix syntax errors in docstrings for versionchanged, versionadded (#17338)
* DOC: Fix typos in versionchanged.
Diffstat (limited to 'numpy/core/multiarray.py')
-rw-r--r-- | numpy/core/multiarray.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/multiarray.py b/numpy/core/multiarray.py index 225c9554c..540d1ea9b 100644 --- a/numpy/core/multiarray.py +++ b/numpy/core/multiarray.py @@ -163,12 +163,12 @@ def concatenate(arrays, axis=None, out=None, *, dtype=None, casting=None): If provided, the destination array will have this dtype. Cannot be provided together with `out`. - ..versionadded:: 1.20.0 + .. versionadded:: 1.20.0 casting : {'no', 'equiv', 'safe', 'same_kind', 'unsafe'}, optional Controls what kind of data casting may occur. Defaults to 'same_kind'. - ..versionadded:: 1.20.0 + .. versionadded:: 1.20.0 Returns ------- |