Skip to content

Commit 6d09028

Browse files
committed
Add syntax highlighting tag to fenced code blocks
1 parent 3a759e9 commit 6d09028

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/algorithms_sampled.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Struct for evaluating an integral via the trapezoidal rule.
77
88
Example with sampled data:
99
10-
```
10+
```julia
1111
using Integrals
1212
f = x -> x^2
1313
x = range(0, 1, length=20)
@@ -28,7 +28,7 @@ Simpson's composite 1/3 rule for non-equidistant grids.
2828
2929
Example with equidistant data:
3030
31-
```
31+
```julia
3232
using Integrals
3333
f = x -> x^2
3434
x = range(0, 1, length=20)

0 commit comments

Comments
 (0)