Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal committed Sep 27, 2024
1 parent 23f61c9 commit c466c24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internal/linear_solve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ function __set_lincache_A(lincache, new_A)
end

function __wrapprecs(_Pl, _Pr, u)
Pl = _Pl !== nothing ?= _Pl : IdentityOperator(length(u))
Pl = _Pl !== nothing ? _Pl : IdentityOperator(length(u))
Pr = _Pr !== nothing ? _Pr : IdentityOperator(length(u))
return Pl, Pr
end
Expand Down

0 comments on commit c466c24

Please sign in to comment.