Skip to content

Commit

Permalink
Fix missing escape in a docstring: \tau -> \\tau (JuliaLang#32950)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf authored and fredrikekre committed Aug 18, 2019
1 parent be3b04b commit 7c99fbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/LinearAlgebra/src/qr.jl
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ triangular matrix ``T`` where
Q = \\prod_{i=1}^{\\min(m,n)} (I - \\tau_i v_i v_i^T) = I - V T V^T
```
such that ``v_i`` is the ``i``th column of ``V``, and ``\tau_i`` is the ``i``th diagonal
such that ``v_i`` is the ``i``th column of ``V``, and ``\\tau_i`` is the ``i``th diagonal
element of ``T``.
Iterating the decomposition produces the components `Q` and `R`.
Expand Down

0 comments on commit 7c99fbf

Please sign in to comment.