Skip to content

Commit 02d370c

Browse files
committed
Add language tag to fenced code blocks
1 parent e7032a8 commit 02d370c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/scimlfunctions.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Cases where automatic wrapping is disabled are equivalent to `FullSpecialize`.
7070
7171
## Example
7272
73-
```
73+
```julia
7474
f(du,u,p,t) = (du .= u)
7575
7676
# Note this is the same as ODEProblem(f, [1.0], (0.0,1.0))
@@ -93,7 +93,7 @@ time. Unlike `AutoSpecialize`, `NoSpecialize` can be used with any
9393
9494
## Example
9595
96-
```
96+
```julia
9797
f(du,u,p,t) = (du .= u)
9898
ODEProblem{true, SciMLBase.NoSpecialize}(f, [1.0], (0.0,1.0))
9999
```
@@ -133,7 +133,7 @@ but also includes the limitations:
133133
134134
## Example
135135
136-
```
136+
```julia
137137
f(du,u,p,t) = (du .= u)
138138
ODEProblem{true, SciMLBase.FunctionWrapperSpecialize}(f, [1.0], (0.0,1.0))
139139
```
@@ -154,7 +154,7 @@ is required, such as in long-running simulations and benchmarking.
154154
155155
## Example
156156
157-
```
157+
```julia
158158
f(du,u,p,t) = (du .= u)
159159
ODEProblem{true, SciMLBase.FullSpecialize}(f, [1.0], (0.0,1.0))
160160
```

0 commit comments

Comments
 (0)