summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2021-01-24 07:54:08 +0200
committerGitHub <noreply@github.com>2021-01-24 07:54:08 +0200
commit2fc0786c175d9dba4526caa425224792d556d116 (patch)
tree2b3028e217dfcab6a231530770784d967721b5b3
parentbb54de4905b2ff127fc8b907a5c284e0cf9f8d65 (diff)
parent9129e6d8478119b6b97840d5e352709656348452 (diff)
downloadnumpy-2fc0786c175d9dba4526caa425224792d556d116.tar.gz
Merge pull request #18214 from Carreau/docstring-array-full
DOC: Double backticks for inline code example.
-rw-r--r--numpy/core/numeric.py2
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.