Skip to content

Commit 2a04d3b

Browse files
Merge pull request #1134 from abhro/stray-backticks
Fix stray/missing backticks and backslashes in strings
2 parents 898f9ac + 07c05ed commit 2a04d3b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/problems/rode_problems.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ to numbers or vectors for `u₀`; one is allowed to provide `u₀` as arbitrary
2626
`isinplace` optionally sets whether the function is inplace or not. This is
2727
determined automatically, but not inferred. `specialize` optionally controls
2828
the specialization level. See the [specialization levels section of the SciMLBase documentation](https://docs.sciml.ai/SciMLBase/stable/interfaces/Problems/#Specialization-Levels)
29-
for more details. The default is `AutoSpecialize.
29+
for more details. The default is `AutoSpecialize`.
3030
3131
For more details on the in-place and specialization controls, see the ODEFunction documentation.
3232

src/problems/sdde_problems.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ SDDEProblem{isinplace,specialize}(f,g[, u0], h, tspan[, p]; <keyword arguments>)
7070
`isinplace` optionally sets whether the function is inplace or not. This is
7171
determined automatically, but not inferred. `specialize` optionally controls
7272
the specialization level. See the [specialization levels section of the SciMLBase documentation](https://docs.sciml.ai/SciMLBase/stable/interfaces/Problems/#Specialization-Levels)
73-
for more details. The default is `AutoSpecialize.
73+
for more details. The default is `AutoSpecialize`.
7474
7575
For more details on the in-place and specialization controls, see the ODEFunction documentation.
7676

src/problems/sde_problems.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ with initial condition `u0`.
4141
`isinplace` optionally sets whether the function is inplace or not. This is
4242
determined automatically, but not inferred. `specialize` optionally controls
4343
the specialization level. See the [specialization levels section of the SciMLBase documentation](https://docs.sciml.ai/SciMLBase/stable/interfaces/Problems/#Specialization-Levels)
44-
for more details. The default is `AutoSpecialize.
44+
for more details. The default is `AutoSpecialize`.
4545
4646
Parameters are optional, and if not given then a `NullParameters()` singleton
4747
will be used which will throw nice errors if you try to index non-existent

src/solutions/nonlinear_solutions.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Statistics from the nonlinear equation solver about the solution process.
88
- nf: Number of function evaluations.
99
- njacs: Number of Jacobians created during the solve.
1010
- nfactors: Number of factorzations of the jacobian required for the solve.
11-
- nsolve: Number of linear solves `W\b` required for the solve.
11+
- nsolve: Number of linear solves `W\\b` required for the solve.
1212
- nsteps: Total number of iterations for the nonlinear solver.
1313
"""
1414
mutable struct NLStats

src/solutions/ode_solutions.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Statistics from the differential equation solver about the solution process.
1414
it is zero.
1515
- nw: The number of W=I-gamma*J (or W=I/gamma-J) matrices constructed during the solving
1616
process.
17-
- nsolve: The number of linear solves `W\b` required for the integration.
17+
- nsolve: The number of linear solves `W\\b` required for the integration.
1818
- njacs: Number of Jacobians calculated during the integration.
1919
- nnonliniter: Total number of iterations for the nonlinear solvers.
2020
- nnonlinconvfail: Number of nonlinear solver convergence failures.

src/solve.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ solve(prob::OptimizationProblem, alg::AbstractOptimizationAlgorithm,
4747
args...; kwargs...)::OptimizationSolution
4848
```
4949
50-
For information about the returned solution object, refer to the documentation for [OptimizationSolution](@ref)
50+
For information about the returned solution object, refer to the documentation for [`OptimizationSolution`](@ref)
5151
5252
## Keyword Arguments
5353

0 commit comments

Comments
 (0)