Skip to content

Commit b08480f

Browse files
committed
fix invalid latex in qr function API docstring
1 parent 50c87f0 commit b08480f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/array_api_stubs/_2022_12/linalg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ def qr(
473473
474474
where :math:`Q \in\ \mathbb{K}^{m \times n}` and :math:`R \in\ \mathbb{K}^{n \times n}`.
475475
476-
The reduced QR decomposition equals with the complete QR decomposition when :math:`n \qeq m` (wide matrix).
476+
The reduced QR decomposition equals with the complete QR decomposition when :math:`n \geq m` (wide matrix).
477477
478478
When ``x`` is a stack of matrices, the function must compute the QR decomposition for each matrix in the stack.
479479

src/array_api_stubs/_draft/linalg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ def qr(
473473
474474
where :math:`Q \in\ \mathbb{K}^{m \times n}` and :math:`R \in\ \mathbb{K}^{n \times n}`.
475475
476-
The reduced QR decomposition equals with the complete QR decomposition when :math:`n \qeq m` (wide matrix).
476+
The reduced QR decomposition equals with the complete QR decomposition when :math:`n \geq m` (wide matrix).
477477
478478
When ``x`` is a stack of matrices, the function must compute the QR decomposition for each matrix in the stack.
479479

0 commit comments

Comments
 (0)