Skip to content

Commit 18ef3a2

Browse files
committed
Fix warning admonition blocks
1 parent 97961dd commit 18ef3a2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/src/features/dae_initialization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ DiffEqBase.ShampineCollocationInit
3333

3434
## ⚠️ WARNING: NoInit Usage
3535

36-
!!! warn "Use NoInit at your own risk"
36+
!!! warning "Use NoInit at your own risk"
3737
**`NoInit()` should almost never be used.** No algorithm has any guarantee of correctness if `NoInit()` is used with inconsistent initial conditions. Users should almost always use `CheckInit()` instead for safety.
3838

3939
**Important:**
@@ -213,4 +213,4 @@ sol = solve(prob, IDA(), initializealg = CheckInit()) # Sundials
213213
## References
214214

215215
- Brown, P. N., Hindmarsh, A. C., & Petzold, L. R. (1998). Consistent initial condition calculation for differential-algebraic systems. SIAM Journal on Scientific Computing, 19(5), 1495-1512.
216-
- Shampine, L. F. (2002). Consistent initial condition for differential-algebraic systems. SIAM Journal on Scientific Computing, 22(6), 2007-2026.
216+
- Shampine, L. F. (2002). Consistent initial condition for differential-algebraic systems. SIAM Journal on Scientific Computing, 22(6), 2007-2026.

docs/src/tutorials/sde_example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ sol = SDE.solve(ensembleprob, SDE.EnsembleThreads(), trajectories = 1000);
130130
nothing # hide
131131
```
132132

133-
!!! warn
133+
!!! warning
134134

135135
If you use a custom noise process, you might need to specify it in a custom prob_func
136136
in the EnsembleProblem constructor, as each trajectory needs its own noise process.

0 commit comments

Comments
 (0)