Skip to content

Commit ff2c811

Browse files
committed
foo
1 parent dc10893 commit ff2c811

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.markdownlint.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"MD046": false,
3+
"MD013": false,
4+
"MD033": false
5+
}

docs/src/tutorial-goddard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ The results found for by the two solvers are extremely close, so now, lets bench
366366
@benchmark solve(prob; abstol=1e-8, reltol=1e-8, show_trace=Val(false)) # NonlinearSolve
367367
```
368368

369-
According to the NonlinearSolve documentation, for small nonlinear systems, it could be faster to use the [`SimpleNewtonRaphson()` descent algorithm](https://docs.sciml.ai/NonlinearSolve/stable/tutorials/code_optimization/).
369+
According to the NonlinearSolve documentation, for small nonlinear systems, it could be faster to use the [`SimpleNewtonRaphson()` descent algorithm](https://docs.sciml.ai/NonlinearSolve/stable/tutorials/code_optimization/).
370370

371371
```@example main-goddard
372372
@benchmark solve(prob, SimpleNewtonRaphson(); abstol=1e-8, reltol=1e-8, show_trace=Val(false)) # NonlinearSolve

0 commit comments

Comments
 (0)