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

Commit 45ff000

Browse files
authored
[skip ci] spelling
1 parent 1d214c5 commit 45ff000

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/raphson.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ and static array problems.
1010
!!! note
1111
1212
As part of the decreased overhead, this method omits some of the higher level error
13-
catching of the other methods. Thus to see better error messages, use one of the other
13+
catching of the other methods. Thus, to see better error messages, use one of the other
1414
methods like `NewtonRaphson`
1515
1616
### Keyword Arguments
1717
1818
- `chunk_size`: the chunk size used by the internal ForwardDiff.jl automatic differentiation
19-
system. This allows for multiple derivative columns to be computed simultaniously,
19+
system. This allows for multiple derivative columns to be computed simultaneously,
2020
improving performance. Defaults to `0`, which is equivalent to using ForwardDiff.jl's
2121
default chunk size mechanism. For more details, see the documentation for
2222
[ForwardDiff.jl](https://juliadiff.org/ForwardDiff.jl/stable/).
2323
- `autodiff`: whether to use forward-mode automatic differentiation for the Jacobian.
24-
Note that this argument is ignored if an analytical Jacobian is passed as that will be
24+
Note that this argument is ignored if an analytical Jacobian is passed; as that will be
2525
used instead. Defaults to `Val{true}`, which means ForwardDiff.jl is used by default.
2626
If `Val{false}`, then FiniteDiff.jl is used for finite differencing.
2727
- `diff_type`: the type of finite differencing used if `autodiff = false`. Defaults to

0 commit comments

Comments
 (0)