Skip to content

Commit 3839778

Browse files
Fix pre-existing spell-check failures blocking docs CI
The Spell Check (typos) job has been failing on master and every PR. Fix the two real typos and allowlist the proper noun so the check passes: - classical_physics.md: ContiunousCallback -> ContinuousCallback - bvp_solve.md: prblem -> problem - .typos.toml: allowlist `Lamba` (the surname in the Lamba & Rackauckas methods LambaEM / LambaEulerHeun; typos mis-flags it as "Lambda") Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent f3a815c commit 3839778

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

.typos.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[default.extend-words]
22
quations = "quations"
3+
Lamba = "Lamba"
34
IIF = "IIF"
45
padd = "padd"
56
thr = "thr"

docs/src/examples/classical_physics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ function double_pendulum_hamiltonian(udot, u, p, t)
265265
2sin(2β) * ((lα^2 - 2(1 + cos(β))lα * lβ + (3 + 2cos(β))lβ^2) / (3 - cos(2β))^2)]
266266
end
267267
268-
# Construct a ContiunousCallback
268+
# Construct a ContinuousCallback
269269
condition(u, t, integrator) = u[1]
270270
affect!(integrator) = nothing
271271
cb = ODE.ContinuousCallback(condition, affect!, nothing,

docs/src/solvers/bvp_solve.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Similar to `MIRK` methods, fully implicit Runge-Kutta methods construct nonlinea
9999

100100
#### Gauss Legendre collocation methods
101101

102-
The `Ascher` collocation methods are similar with `MIRK` and `FIRK` methods but have extension for BVDAE prblem solving, the error control is based on instead of defect control adaptivity.
102+
The `Ascher` collocation methods are similar with `MIRK` and `FIRK` methods but have extension for BVDAE problem solving, the error control is based on instead of defect control adaptivity.
103103

104104
- `BoundaryValueDiffEqAscher.Ascher1` - A 1st stage Gauss Legendre collocation method with Ascher's error control adaptivity.
105105
- `BoundaryValueDiffEqAscher.Ascher2` - A 2nd stage Gauss Legendre collocation method with Ascher's error control adaptivity.

0 commit comments

Comments
 (0)