Skip to content

Commit

Permalink
Merge pull request #2502 from Iddingsite/master
Browse files Browse the repository at this point in the history
Fix typo in docs
  • Loading branch information
ChrisRackauckas authored Oct 24, 2024
2 parents 5812e3e + 89f57a1 commit 8211de9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ makedocs(sitename = "OrdinaryDiffEq.jl",
],
"Semi-Implicit Solvers" => [
"semiimplicit/Rosenbrock.md",
"semiimplicit/StabalizedRK.md",
"semiimplicit/StabilizedRK.md",
"semiimplicit/ExponentialRK.md"
],
"Implicit Solvers" => [
Expand All @@ -72,7 +72,7 @@ makedocs(sitename = "OrdinaryDiffEq.jl",
],
"IMEX Solvers" => [
"imex/IMEXMultistep.md",
"imex/StabalizedIRK.md",
"imex/StabilizedIRK.md",
"imex/IMEXBDF.md"
],
"Dynamical ODE Explicit Solvers" => [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
CollapsedDocStrings = true
```

# OrdinaryDiffEqStabalizedIRK
# OrdinaryDiffEqStabilizedIRK

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

## Installation

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

```julia
using Pkg
Pkg.add("OrdinaryDiffEqStabalizedIRK")
Pkg.add("OrdinaryDiffEqStabilizedIRK")
```

This will only install the solvers listed at the bottom of this page.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
CollapsedDocStrings = true
```

# OrdinaryDiffEqStabalizedRK
# OrdinaryDiffEqStabilizedRK

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

```@eval
first_steps = evalfile("./common_first_steps.jl")
first_steps("OrdinaryDiffEqStabalizedRK", "ROCK4")
first_steps("OrdinaryDiffEqStabilizedRK", "ROCK4")
```

## Full list of solvers
Expand Down
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqStabilizedIRK/src/algorithms.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@doc generic_solver_docstring("Implicit Runge-Kutta-Chebyshev method.",
"IRKC",
"Stabalized Implicit Runge Kutta method.",
"Stabilized Implicit Runge Kutta method.",
"REF TBD",
"- `eigen_est`: function of the form
`(integrator) -> integrator.eigen_est = upper_bound`,
Expand Down

0 comments on commit 8211de9

Please sign in to comment.