diff options
author | yuki <drsuaimqjgar@gmail.com> | 2023-02-24 11:05:01 +0000 |
---|---|---|
committer | yuki <drsuaimqjgar@gmail.com> | 2023-02-25 01:36:37 +0000 |
commit | 125ceed416dfde9ca09b4e9a2471d86578228be7 (patch) | |
tree | 19780ccfec9967affdfaf0114c05866d102152a3 /doc | |
parent | 5f04e748b8d4c92bc6ad4d7a38ee6601dc0ccf04 (diff) | |
download | numpy-125ceed416dfde9ca09b4e9a2471d86578228be7.tar.gz |
DOC: Fix some links in the usage document
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/user/basics.creation.rst | 2 | ||||
-rw-r--r-- | doc/source/user/how-to-verify-bug.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/user/basics.creation.rst b/doc/source/user/basics.creation.rst index a97d69d8b..40b4e378d 100644 --- a/doc/source/user/basics.creation.rst +++ b/doc/source/user/basics.creation.rst @@ -352,7 +352,7 @@ and :func:`numpy.genfromtxt`. These functions have more involved use cases in 2, 4 3, 9 -Importing ``simple.csv`` is accomplished using :func:`loadtxt`:: +Importing ``simple.csv`` is accomplished using :func:`numpy.loadtxt`:: >>> np.loadtxt('simple.csv', delimiter = ',', skiprows = 1) # doctest: +SKIP array([[0., 0.], diff --git a/doc/source/user/how-to-verify-bug.rst b/doc/source/user/how-to-verify-bug.rst index 4fc58c707..6e76f453a 100644 --- a/doc/source/user/how-to-verify-bug.rst +++ b/doc/source/user/how-to-verify-bug.rst @@ -76,7 +76,7 @@ The report references NumPy version 1.18.4, so that is the version you need to install in this case. Since this bug is tied to a release and not a specific commit, a pre-built wheel -installed in your virtual environment via `pip` will suffice:: +installed in your virtual environment via ``pip`` will suffice:: pip install numpy==1.18.4 |