Skip to content

Commit d64ebd3

Browse files
authored
Update help info for qr.jl (#55320)
'Rather than' seems to be the correct intent of the help info. This would mean that Julia stores the result of QR in compact form instead of (=rather than) storing in dense form. 'Rather as' would mean that Julia stores Q and R in two separate dense matrices and not in compact form.
1 parent 8d41d25 commit d64ebd3

File tree

1 file changed

+1
-1
lines changed
  • stdlib/LinearAlgebra/src

1 file changed

+1
-1
lines changed

stdlib/LinearAlgebra/src/qr.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ true
417417
`qr` returns multiple types because LAPACK uses several representations
418418
that minimize the memory storage requirements of products of Householder
419419
elementary reflectors, so that the `Q` and `R` matrices can be stored
420-
compactly rather as two separate dense matrices.
420+
compactly rather than two separate dense matrices.
421421
"""
422422
function qr(A::AbstractMatrix{T}, arg...; kwargs...) where T
423423
require_one_based_indexing(A)

0 commit comments

Comments
 (0)