summaryrefslogtreecommitdiff
path: root/numpy/core/numeric.py
diff options
context:
space:
mode:
authorMatthias Bussonnier <bussonniermatthias@gmail.com>2022-03-21 10:43:28 +0100
committerMatthias Bussonnier <bussonniermatthias@gmail.com>2022-03-21 10:45:24 +0100
commitc4efd1f2f23bffb5de34a6348bcdbb33d7d0365a (patch)
treec51eab206de10693fd69fd12732790b2d677b25a /numpy/core/numeric.py
parent1d9ade8895f8f385e1d44f41a752dbb9ba3438b2 (diff)
downloadnumpy-c4efd1f2f23bffb5de34a6348bcdbb33d7d0365a.tar.gz
DOC: misc fixes:
- improper urls - a few use of single bakcticks where many are expected - Proper numpydoc format [ci skip] [skip azp] [skip circle]
Diffstat (limited to 'numpy/core/numeric.py')
-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 39bfc2d55..b89bbe457 100644
--- a/numpy/core/numeric.py
+++ b/numpy/core/numeric.py
@@ -1567,7 +1567,7 @@ def cross(a, b, axisa=-1, axisb=-1, axisc=-1, axis=None):
array(-3)
Multiple vector cross-products. Note that the direction of the cross
- product vector is defined by the `right-hand rule`.
+ product vector is defined by the *right-hand rule*.
>>> x = np.array([[1,2,3], [4,5,6]])
>>> y = np.array([[4,5,6], [1,2,3]])