JuliaLinearAlgebra / IterativeSolvers.jl

Iterative algorithms for solving linear systems, eigensystems, and singular value problems
MIT License
403 stars 106 forks source link

Documentation error in lsqr and lsmr #351

Closed andreasvarga closed 2 months ago

andreasvarga commented 1 year ago

Small errors in

lsqr(A, b; kwrags...) -> x, [history]

lsmr(A, b; kwrags...) -> x, [history]

Correct to

lsqr(A, b; kwargs...) -> x, [history]

lsmr(A, b; kwargs...) -> x, [history]