Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

Commit ac448ea

Browse files
Merge pull request #84 from TomRottier/patch-1
Fix error in README example
2 parents 1600f7c + f7ba49b commit ac448ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ using SimpleNonlinearSolve, StaticArrays
2828
f(u,p) = u .* u .- 2
2929
u0 = @SVector[1.0, 1.0]
3030
probN = NonlinearProblem{false}(f, u0)
31-
solver = solve(probN, SimpleNewtonRaphson(), tol = 1e-9)
31+
solver = solve(probN, SimpleNewtonRaphson(), abstol = 1e-9)
3232

3333
## Bracketing Methods
3434

0 commit comments

Comments
 (0)