Skip to content

Commit c868bf1

Browse files
Merge pull request #878 from anandijain/aj/docs
fix docstring syntax highlighting
2 parents 8497ab6 + 796ff5b commit c868bf1

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

src/systems/control/controlsystem.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ $(FIELDS)
3030
3131
# Example
3232
33-
```
33+
```julia
3434
using ModelingToolkit
3535
3636
@variables t x(t) v(t) u(t)

src/systems/diffeqs/odesystem.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ $(FIELDS)
88
99
# Example
1010
11-
```
11+
```julia
1212
using ModelingToolkit
1313
1414
@parameters t σ ρ β

src/systems/diffeqs/sdesystem.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ $(FIELDS)
88
99
# Example
1010
11-
```
11+
```julia
1212
using ModelingToolkit
1313
1414
@parameters t σ ρ β

src/systems/nonlinear/nonlinearsystem.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ $(FIELDS)
88
99
# Examples
1010
11-
```
11+
```julia
1212
@variables x y z
1313
@parameters σ ρ β
1414

src/systems/optimization/optimizationsystem.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ $(FIELDS)
88
99
# Examples
1010
11-
```
11+
```julia
1212
@variables x y z
1313
@parameters σ ρ β
1414

src/systems/reaction/reactionsystem.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ $(FIELDS)
99
1010
# Examples
1111
12-
```
12+
```julia
1313
using ModelingToolkit
1414
@parameters t k[1:20]
1515
@variables A(t) B(t) C(t) D(t)
@@ -117,7 +117,7 @@ $(FIELDS)
117117
118118
# Example
119119
Continuing from the example in the [`Reaction`](@ref) definition:
120-
```
120+
```julia
121121
rs = ReactionSystem(rxs, t, [A,B,C,D], k)
122122
```
123123
"""

0 commit comments

Comments
 (0)