Skip to content

Commit 8594a69

Browse files
authored
Update README.md
1 parent b058bb8 commit 8594a69

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ To add and run a demo of **Glychee**:
5555
import gleam/list
5656
import glychee/benchmark
5757
import glychee/configuration
58-
58+
5959
pub fn main() {
6060
// Configuration is optional
6161
configuration.initialize()
6262
configuration.set_pair(configuration.Warmup, 2)
6363
configuration.set_pair(configuration.Parallel, 2)
64-
64+
6565
// Run the benchmarks
6666
benchmark.run(
6767
[
@@ -73,8 +73,7 @@ To add and run a demo of **Glychee**:
7373
benchmark.Data(label: "pre-sorted list", data: list.range(1, 100_000)),
7474
benchmark.Data(
7575
label: "reversed list",
76-
data: list.range(1, 100_000)
77-
|> list.reverse,
76+
data: list.range(1, 100_000) |> list.reverse,
7877
),
7978
],
8079
)

0 commit comments

Comments
 (0)