Skip to content

Commit 97599c0

Browse files
committed
Move the closing parent to a separate line.
1 parent 3e60f3a commit 97599c0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

benchmarks/Sequence.hs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ main = do
3636
[ bench "ix10000/5000" $ nf (\(xs,ys) -> S.zip xs ys `S.index` 5000) (s10000, u10000)
3737
, bench "nf100" $ nf (uncurry S.zip) (s100, u100)
3838
, bench "nf10000" $ nf (uncurry S.zip) (s10000, u10000)
39-
] ]
39+
]
40+
]
4041

4142
-- splitAt+append: repeatedly cut the sequence at a random point
4243
-- and rejoin the pieces in the opposite order.

0 commit comments

Comments
 (0)