Skip to content

Commit

Permalink
Spell check
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikQQY committed Feb 16, 2025
1 parent 036eeda commit f8ede44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/tutorials/accelerating_choices.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Great, you've learned how to use LinearSolve.jl and you're using it daily,
either directly or through other SciML libraries, and you want to improve
your performance. How can this be done? While it might seem at first like a
hopeless endevour, "A\b uses a BLAS library and so it's already highly optimized
hopeless endeavour, "A\b uses a BLAS library and so it's already highly optimized
C code", it turns out there are many factors you need to consider to squeeze out
the last 10x of performance. And yes, it can be about a factor of 10 in some
scenarios, so let's dive in.
Expand Down
2 changes: 1 addition & 1 deletion src/KLU/klu.jl
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function kluerror(status::Integer)
elseif status == KLU_INVALID
throw(ArgumentError("Invalid Status"))
elseif status == KLU_TOO_LARGE
throw(OverflowError("Integer overflow has occured"))
throw(OverflowError("Integer overflow has occurred"))
else
throw(ErrorException("Unknown KLU error code: $status"))
end
Expand Down

0 comments on commit f8ede44

Please sign in to comment.