Skip to content

Commit 4322bfd

Browse files
authored
Merge pull request #352 from VHarisop/vc/issue-#351
Fixes lsmr/lsqr docstring
2 parents ff2f910 + 3df9869 commit 4322bfd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/lsmr.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export lsmr, lsmr!
33
using LinearAlgebra
44

55
"""
6-
lsmr(A, b; kwrags...) -> x, [history]
6+
lsmr(A, b; kwargs...) -> x, [history]
77
88
Same as [`lsmr!`](@ref), but allocates a solution vector `x` initialized with zeros.
99
"""

src/lsqr.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export lsqr, lsqr!
22

33
"""
4-
lsqr(A, b; kwrags...) -> x, [history]
4+
lsqr(A, b; kwargs...) -> x, [history]
55
66
Same as [`lsqr!`](@ref), but allocates a solution vector `x` initialized with zeros.
77
"""

0 commit comments

Comments
 (0)