From 1b3874dff331d01f29afb1582e88c871f8e4ef82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malte=20P=C3=BCtz?= <49274877+maltepuetz@users.noreply.github.com> Date: Tue, 10 Dec 2024 14:02:34 +0100 Subject: [PATCH] Fix documentation bug in QR docstring There was a '\' missing in the QR docstring. Changed '\tau_i' to '\\tau_i'. --- src/qr.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qr.jl b/src/qr.jl index df9b519..9e0f49d 100644 --- a/src/qr.jl +++ b/src/qr.jl @@ -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