Skip to content

Commit

Permalink
Fix documentation bug in QR docstring (#1145)
Browse files Browse the repository at this point in the history
There was a `\` missing in the QR docstring. Changed `\tau_i` to
`\\tau_i`.
  • Loading branch information
maltepuetz authored Dec 11, 2024
1 parent 128518e commit 130b94a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qr.jl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The object has two fields:
- The subdiagonal part contains the reflectors ``v_i`` stored in a packed format where
``v_i`` is the ``i``th column of the matrix `V = I + tril(F.factors, -1)`.
* `τ` is a vector of length `min(m,n)` containing the coefficients ``\tau_i``.
* `τ` is a vector of length `min(m,n)` containing the coefficients ``\\tau_i``.
"""
struct QR{T,S<:AbstractMatrix{T},C<:AbstractVector{T}} <: Factorization{T}
factors::S
Expand Down

0 comments on commit 130b94a

Please sign in to comment.