Skip to content

Commit

Permalink
Fix string concatenation error
Browse files Browse the repository at this point in the history
  • Loading branch information
KronosTheLate authored Mar 10, 2022
1 parent 2fada7a commit 7cd2124
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/falsi.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function perform_step(solver, alg::Falsi, cache)

fzero = zero(fl)
fl * fr > fzero && error("Bracket became non-containing in between iterations. This could mean that "
+ "input function crosses the x axis multiple times. Bisection is not the right method to solve this.")
* "input function crosses the x axis multiple times. Bisection is not the right method to solve this.")

mid = (fr * left - fl * right) / (fr - fl)

Expand Down

0 comments on commit 7cd2124

Please sign in to comment.