Skip to content

Commit 825cecb

Browse files
Just use IIP inference
1 parent f32e596 commit 825cecb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/tutorials/nonlinear.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ using NonlinearSolve, StaticArrays
1010
f(u, p) = u .* u .- p
1111
u0 = @SVector[1.0, 1.0]
1212
p = 2.0
13-
probN = NonlinearProblem{false}(f, u0, p)
13+
probN = NonlinearProblem(f, u0, p)
1414
solver = solve(probN, NewtonRaphson(), reltol = 1e-9)
1515
```
1616

0 commit comments

Comments
 (0)