Skip to content

[ci skip] Fix spelling errors in NonlinearSolve.jl #653

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 29, 2025
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