Skip to content

Commit 4be15f7

Browse files
little docs improvements
1 parent 8a79030 commit 4be15f7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/systems/diffeqs/odesystem.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ struct ODESystem <: AbstractODESystem
4242
"""
4343
jac::RefValue{Matrix{Expression}}
4444
"""
45-
Wfact matrix. Note: this field will not be defined until
45+
`Wfact` matrix. Note: this field will not be defined until
4646
[`generate_factorized_W`](@ref) is called on the system.
4747
"""
4848
Wfact::RefValue{Matrix{Expression}}
4949
"""
50-
Wfact_t matrix. Note: this field will not be defined until
50+
`Wfact_t` matrix. Note: this field will not be defined until
5151
[`generate_factorized_W`](@ref) is called on the system.
5252
"""
5353
Wfact_t::RefValue{Matrix{Expression}}

src/systems/diffeqs/sdesystem.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ struct SDESystem <: AbstractODESystem
4848
"""
4949
jac::RefValue{Matrix{Expression}}
5050
"""
51-
Wfact matrix. Note: this field will not be defined until
51+
`Wfact` matrix. Note: this field will not be defined until
5252
[`generate_factorized_W`](@ref) is called on the system.
5353
"""
5454
Wfact::RefValue{Matrix{Expression}}
5555
"""
56-
Wfact_t matrix. Note: this field will not be defined until
56+
`Wfact_t` matrix. Note: this field will not be defined until
5757
[`generate_factorized_W`](@ref) is called on the system.
5858
"""
5959
Wfact_t::RefValue{Matrix{Expression}}

src/variables.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ z
218218
z₁(t())
219219
z₂(t())
220220
z₃(t())
221-
```
221+
```
222222
"""
223223
macro variables(xs...)
224224
esc(_parse_vars(:variables, Number, xs))

0 commit comments

Comments
 (0)