Skip to content

Commit

Permalink
Merge pull request #263 from avik-pal/ap/fix_docs
Browse files Browse the repository at this point in the history
Fix docs
  • Loading branch information
ChrisRackauckas authored Oct 26, 2023
2 parents dbed34c + effaa64 commit 8fe131a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/src/basics/solve.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# [Common Solver Options (Solve Keyword Arguments)](@id solver_options)

```@docs
solve(prob::SciMLBase.NonlinearProblem,args...;kwargs...)
solve(prob::SciMLBase.NonlinearProblem, args...; kwargs...)
```
2 changes: 1 addition & 1 deletion docs/src/tutorials/small_compile.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Faster Startup and and Static Compilation
# [Faster Startup and and Static Compilation](@id fast_startup)

In many instances one may want a very lightweight version of NonlinearSolve.jl. For this case there
exists the solver package SimpleNonlinearSolve.jl. SimpleNonlinearSolve.jl solvers all satisfy the
Expand Down
2 changes: 1 addition & 1 deletion src/broyden.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ An implementation of `Broyden` with reseting and line search.
- `linesearch`: the line search algorithm to use. Defaults to [`LineSearch()`](@ref),
which means that no line search is performed. Algorithms from `LineSearches.jl` can be
used here directly, and they will be converted to the correct `LineSearch`. It is
recommended to use [LiFukushimaLineSearchCache](@ref) -- a derivative free linesearch
recommended to use [LiFukushimaLineSearch](@ref) -- a derivative free linesearch
specifically designed for Broyden's method.
"""
@concrete struct GeneralBroyden <: AbstractNewtonAlgorithm{false, Nothing}
Expand Down

0 comments on commit 8fe131a

Please sign in to comment.