summaryrefslogtreecommitdiff
path: root/numpy/core/numeric.py
diff options
context:
space:
mode:
authorserge-sans-paille <serge.guelton@telecom-bretagne.eu>2020-11-21 07:43:11 +0100
committerserge-sans-paille <serge.guelton@telecom-bretagne.eu>2020-11-21 08:32:57 +0100
commit254836c570b96b2bb46c414fcf786ee649481670 (patch)
tree86dc9060d2143512c3910d3bf860605dc340b178 /numpy/core/numeric.py
parent81e363da7a59ebccf3d583fb77dacb959cf6fa9a (diff)
downloadnumpy-254836c570b96b2bb46c414fcf786ee649481670.tar.gz
Harmonize quoting in (ones/fill/zeros/empty)_like documentation
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r--numpy/core/numeric.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py
index 25235f738..c95c48d71 100644
--- a/numpy/core/numeric.py
+++ b/numpy/core/numeric.py
@@ -95,7 +95,7 @@ def zeros_like(a, dtype=None, order='K', subok=True, shape=None):
.. versionadded:: 1.6.0
subok : bool, optional.
If True, then the newly created array will use the sub-class
- type of 'a', otherwise it will be a base-class array. Defaults
+ type of `a`, otherwise it will be a base-class array. Defaults
to True.
shape : int or sequence of ints, optional.
Overrides the shape of the result. If order='K' and the number of
@@ -237,7 +237,7 @@ def ones_like(a, dtype=None, order='K', subok=True, shape=None):
.. versionadded:: 1.6.0
subok : bool, optional.
If True, then the newly created array will use the sub-class
- type of 'a', otherwise it will be a base-class array. Defaults
+ type of `a`, otherwise it will be a base-class array. Defaults
to True.
shape : int or sequence of ints, optional.
Overrides the shape of the result. If order='K' and the number of
@@ -374,7 +374,7 @@ def full_like(a, fill_value, dtype=None, order='K', subok=True, shape=None):
as possible.
subok : bool, optional.
If True, then the newly created array will use the sub-class
- type of 'a', otherwise it will be a base-class array. Defaults
+ type of `a`, otherwise it will be a base-class array. Defaults
to True.
shape : int or sequence of ints, optional.
Overrides the shape of the result. If order='K' and the number of