diff options
author | Matthias Bussonnier <bussonniermatthias@gmail.com> | 2021-01-23 15:29:24 -0800 |
---|---|---|
committer | Matthias Bussonnier <bussonniermatthias@gmail.com> | 2021-01-23 15:29:24 -0800 |
commit | 9129e6d8478119b6b97840d5e352709656348452 (patch) | |
tree | 0b9edfb46c80527dfc6cab2f9346f5be78f9e118 /numpy | |
parent | bec2b07db5c999721d2d2c10334f3afe78aaadd9 (diff) | |
download | numpy-9129e6d8478119b6b97840d5e352709656348452.tar.gz |
DOC: Double backticks for inline code example.
Single backticks are supposed to be use for reference to other object,
In this context double backticks (verbatim) appear to be better suited.
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/numeric.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index c95c48d71..e776bd43b 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -299,7 +299,7 @@ def full(shape, fill_value, dtype=None, order='C', *, like=None): Fill value. dtype : data-type, optional The desired data-type for the array The default, None, means - `np.array(fill_value).dtype`. + ``np.array(fill_value).dtype``. order : {'C', 'F'}, optional Whether to store multidimensional data in C- or Fortran-contiguous (row- or column-wise) order in memory. |