Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal committed Jan 15, 2024
1 parent 6e6e1fa commit 4d64713
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ PrecompileTools = "1.2"
Preferences = "1"
Printf = "1.10"
Random = "1.91"
RecursiveArrayTools = "3.2"
RecursiveArrayTools = "3.4"
Reexport = "1.2"
SIAMFANLEquations = "1.0.1"
SafeTestsets = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ makedocs(; sitename = "NonlinearSolve.jl",
DiffEqBase, SciMLBase],
clean = true, doctest = false, linkcheck = true,
linkcheck_ignore = ["https://twitter.com/ChrisRackauckas/status/1544743542094020615"],
checkdocs = :exports, warnonly = false, plugins = [bib],
checkdocs = :exports, warnonly = [:missing_docs], plugins = [bib],
format = Documenter.HTML(assets = ["assets/favicon.ico", "assets/citations.css"],
canonical = "https://docs.sciml.ai/NonlinearSolve/stable/"),
pages)
Expand Down
2 changes: 1 addition & 1 deletion src/core/approximate_jacobian.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ examples include [`Broyden`](@ref)'s Method.
### Keyword Arguments
- `trustregion`: Globalization using a Trust Region Method. This needs to follow the
[`NonlinearSolve.AbstractNonlinearSolveTrustRegionAlgorithm`](@ref) interface.
[`NonlinearSolve.AbstractTrustRegionMethod`](@ref) interface.
- `descent`: The descent method to use to compute the step. This needs to follow the
[`NonlinearSolve.AbstractDescentAlgorithm`](@ref) interface.
- `max_shrink_times`: The maximum number of times the trust region radius can be shrunk
Expand Down
2 changes: 1 addition & 1 deletion src/core/generalized_first_order.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ order of convergence.
### Keyword Arguments
- `trustregion`: Globalization using a Trust Region Method. This needs to follow the
[`NonlinearSolve.AbstractNonlinearSolveTrustRegionAlgorithm`](@ref) interface.
[`NonlinearSolve.AbstractTrustRegionMethod`](@ref) interface.
- `descent`: The descent method to use to compute the step. This needs to follow the
[`NonlinearSolve.AbstractDescentAlgorithm`](@ref) interface.
- `max_shrink_times`: The maximum number of times the trust region radius can be shrunk
Expand Down

0 comments on commit 4d64713

Please sign in to comment.