Skip to content

Commit cf04e3f

Browse files
committed
Fix docs
1 parent 6e6e1fa commit cf04e3f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ ForwardDiff = "0.10.36"
7171
LazyArrays = "1.8.2"
7272
LeastSquaresOptim = "0.8.5"
7373
LineSearches = "7.2"
74-
LinearAlgebra = "<0.0.1, 1"
74+
LinearAlgebra = "1.10"
7575
LinearSolve = "2.21"
7676
MINPACK = "1.2"
7777
MaybeInplace = "0.1.1"
@@ -81,10 +81,10 @@ NonlinearProblemLibrary = "0.1.2"
8181
OrdinaryDiffEq = "6.63"
8282
Pkg = "1.10"
8383
PrecompileTools = "1.2"
84-
Preferences = "1"
84+
Preferences = "1.4"
8585
Printf = "1.10"
8686
Random = "1.91"
87-
RecursiveArrayTools = "3.2"
87+
RecursiveArrayTools = "3.4"
8888
Reexport = "1.2"
8989
SIAMFANLEquations = "1.0.1"
9090
SafeTestsets = "0.1"

docs/make.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ makedocs(; sitename = "NonlinearSolve.jl",
1717
DiffEqBase, SciMLBase],
1818
clean = true, doctest = false, linkcheck = true,
1919
linkcheck_ignore = ["https://twitter.com/ChrisRackauckas/status/1544743542094020615"],
20-
checkdocs = :exports, warnonly = false, plugins = [bib],
20+
checkdocs = :exports, warnonly = [:missing_docs], plugins = [bib],
2121
format = Documenter.HTML(assets = ["assets/favicon.ico", "assets/citations.css"],
2222
canonical = "https://docs.sciml.ai/NonlinearSolve/stable/"),
2323
pages)

src/core/approximate_jacobian.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ examples include [`Broyden`](@ref)'s Method.
1111
### Keyword Arguments
1212
1313
- `trustregion`: Globalization using a Trust Region Method. This needs to follow the
14-
[`NonlinearSolve.AbstractNonlinearSolveTrustRegionAlgorithm`](@ref) interface.
14+
[`NonlinearSolve.AbstractTrustRegionMethod`](@ref) interface.
1515
- `descent`: The descent method to use to compute the step. This needs to follow the
1616
[`NonlinearSolve.AbstractDescentAlgorithm`](@ref) interface.
1717
- `max_shrink_times`: The maximum number of times the trust region radius can be shrunk

src/core/generalized_first_order.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ order of convergence.
1616
### Keyword Arguments
1717
1818
- `trustregion`: Globalization using a Trust Region Method. This needs to follow the
19-
[`NonlinearSolve.AbstractNonlinearSolveTrustRegionAlgorithm`](@ref) interface.
19+
[`NonlinearSolve.AbstractTrustRegionMethod`](@ref) interface.
2020
- `descent`: The descent method to use to compute the step. This needs to follow the
2121
[`NonlinearSolve.AbstractDescentAlgorithm`](@ref) interface.
2222
- `max_shrink_times`: The maximum number of times the trust region radius can be shrunk

0 commit comments

Comments
 (0)