Skip to content

Commit 8211de9

Browse files
Merge pull request #2502 from Iddingsite/master
Fix typo in docs
2 parents 5812e3e + 89f57a1 commit 8211de9

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

docs/make.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ makedocs(sitename = "OrdinaryDiffEq.jl",
5959
],
6060
"Semi-Implicit Solvers" => [
6161
"semiimplicit/Rosenbrock.md",
62-
"semiimplicit/StabalizedRK.md",
62+
"semiimplicit/StabilizedRK.md",
6363
"semiimplicit/ExponentialRK.md"
6464
],
6565
"Implicit Solvers" => [
@@ -72,7 +72,7 @@ makedocs(sitename = "OrdinaryDiffEq.jl",
7272
],
7373
"IMEX Solvers" => [
7474
"imex/IMEXMultistep.md",
75-
"imex/StabalizedIRK.md",
75+
"imex/StabilizedIRK.md",
7676
"imex/IMEXBDF.md"
7777
],
7878
"Dynamical ODE Explicit Solvers" => [

docs/src/imex/StabalizedIRK.md renamed to docs/src/imex/StabilizedIRK.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
CollapsedDocStrings = true
33
```
44

5-
# OrdinaryDiffEqStabalizedIRK
5+
# OrdinaryDiffEqStabilizedIRK
66

77
Stabilized Explicit Runge-Kutta methods,
88
like Runge-Kutta-Chebyshev methods and ROCK methods
@@ -25,11 +25,11 @@ Users can supply an upper bound by specifying the keyword argument `eigen_est`,
2525

2626
## Installation
2727

28-
To be able to access the solvers in `OrdinaryDiffEqStabalizedIRK`, you must first install them use the Julia package manager:
28+
To be able to access the solvers in `OrdinaryDiffEqStabilizedIRK`, you must first install them use the Julia package manager:
2929

3030
```julia
3131
using Pkg
32-
Pkg.add("OrdinaryDiffEqStabalizedIRK")
32+
Pkg.add("OrdinaryDiffEqStabilizedIRK")
3333
```
3434

3535
This will only install the solvers listed at the bottom of this page.

docs/src/semiimplicit/StabalizedRK.md renamed to docs/src/semiimplicit/StabilizedRK.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
CollapsedDocStrings = true
33
```
44

5-
# OrdinaryDiffEqStabalizedRK
5+
# OrdinaryDiffEqStabilizedRK
66

77
Explicit stabilized methods utilize an upper bound on the spectral radius of the Jacobian.
88
Users can supply an upper bound by specifying the keyword argument `eigen_est`, for example
@@ -13,7 +13,7 @@ Users can supply an upper bound by specifying the keyword argument `eigen_est`,
1313

1414
```@eval
1515
first_steps = evalfile("./common_first_steps.jl")
16-
first_steps("OrdinaryDiffEqStabalizedRK", "ROCK4")
16+
first_steps("OrdinaryDiffEqStabilizedRK", "ROCK4")
1717
```
1818

1919
## Full list of solvers

lib/OrdinaryDiffEqStabilizedIRK/src/algorithms.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@doc generic_solver_docstring("Implicit Runge-Kutta-Chebyshev method.",
22
"IRKC",
3-
"Stabalized Implicit Runge Kutta method.",
3+
"Stabilized Implicit Runge Kutta method.",
44
"REF TBD",
55
"- `eigen_est`: function of the form
66
`(integrator) -> integrator.eigen_est = upper_bound`,

0 commit comments

Comments
 (0)