Skip to content

Commit

Permalink
Add syntax highlighting tag to fenced code blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
abhro committed Jul 1, 2024
1 parent 3a759e9 commit 6d09028
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/algorithms_sampled.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Struct for evaluating an integral via the trapezoidal rule.
Example with sampled data:
```
```julia
using Integrals
f = x -> x^2
x = range(0, 1, length=20)
Expand All @@ -28,7 +28,7 @@ Simpson's composite 1/3 rule for non-equidistant grids.
Example with equidistant data:
```
```julia
using Integrals
f = x -> x^2
x = range(0, 1, length=20)
Expand Down

0 comments on commit 6d09028

Please sign in to comment.