Skip to content

Commit ec9a7b3

Browse files
committed
Fix non existing labels
1 parent fb6b576 commit ec9a7b3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

spec/API_specification/signatures/array_object.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ def __matmul__(self: array, other: array, /) -> array:
614614
615615
616616
.. note::
617-
Results must equal the results returned by the equivalent function :ref:`function-matmul`.
617+
Results must equal the results returned by the equivalent function :func:`signatures.linear_algebra_functions.matmul`.
618618
619619
**Raises**
620620

spec/extensions/linear_algebra_functions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ Returns the multiplicative inverse of a square matrix (or a stack of square matr
258258
(function-linalg-matmul)=
259259
### linalg.matmul(x1, x2, /)
260260

261-
Alias for {ref}`function-matmul`.
261+
Alias for {func}`signatures.linear_algebra_functions.matmul`.
262262

263263
(function-linalg-matrix-norm)=
264264
### linalg.matrix_norm(x, /, *, keepdims=False, ord='fro')
@@ -352,7 +352,7 @@ Returns the rank (i.e., number of non-zero singular values) of a matrix (or a st
352352
(function-linalg-matrix-transpose)=
353353
### linalg.matrix_transpose(x, /)
354354

355-
Alias for {ref}`function-matrix-transpose`.
355+
Alias for {func}`signatures.linear_algebra_functions.matrix_transpose`.
356356

357357
(function-linalg-outer)=
358358
### linalg.outer(x1, x2, /)
@@ -537,7 +537,7 @@ Returns the singular values of a matrix (or a stack of matrices) `x`.
537537
(function-linalg-tensordot)=
538538
### linalg.tensordot(x1, x2, /, *, axes=2)
539539

540-
Alias for {ref}`function-tensordot`.
540+
Alias for {func}`signatures.linear_algebra_functions.tensordot`.
541541

542542
(function-linalg-trace)=
543543
### linalg.trace(x, /, *, offset=0)
@@ -575,7 +575,7 @@ Returns the sum along the specified diagonals of a matrix (or a stack of matrice
575575
(function-linalg-vecdot)=
576576
### linalg.vecdot(x1, x2, /, *, axis=-1)
577577
578-
Alias for {ref}`function-vecdot`.
578+
Alias for {func}`signatures.linear_algebra_functions.vecdot`.
579579
580580
(function-linalg-vector-norm)=
581581
### linalg.vector_norm(x, /, *, axis=None, keepdims=False, ord=2)

0 commit comments

Comments
 (0)