Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Jutho committed Nov 13, 2024
1 parent e1ae0a4 commit 6ae6bb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/KrylovKit.jl
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ include("innerproductvec.jl")
# support for real
_realinner(v, w) = real(inner(v, w))
const RealVec{V} = InnerProductVec{typeof(_realinner),V}
RealVec(v) = InnerProductVec(v, realinner)
RealVec(v) = InnerProductVec(v, _realinner)

apply(A, x::RealVec) = RealVec(apply(A, x[]))

Expand Down

0 comments on commit 6ae6bb3

Please sign in to comment.