Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,7 @@ ists = "ists"
ispcs = "ispcs"
eqs = "eqs"
rhs = "rhs"
MTK = "MTK"
MTK = "MTK"

# NonlinearSolve specific terms
LSO = "LSO" # Legitimate abbreviation used in optimization contexts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ geodesic acceleration method. The velocity and acceleration terms are then combi
compute the descent direction.

This method in its current form was developed for `LevenbergMarquardt`. Performance
for other methods are not theorectically or experimentally verified.
for other methods are not theoretically or experimentally verified.

### Keyword Arguments

Expand Down
2 changes: 1 addition & 1 deletion lib/NonlinearSolveBase/src/tracing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ end

!!! warning

This is very expensive and makes copyies of the Jacobian, u, f(u), and δu.
This is very expensive and makes copies of the Jacobian, u, f(u), and δu.

See also [`TraceMinimal`](@ref) and [`TraceWithJacobianConditionNumber`](@ref).
"""
Expand Down
Loading