From 9129e6d8478119b6b97840d5e352709656348452 Mon Sep 17 00:00:00 2001 From: Matthias Bussonnier Date: Sat, 23 Jan 2021 15:29:24 -0800 Subject: 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. --- numpy/core/numeric.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/core/numeric.py') 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. -- cgit v1.2.1