Skip to content

Commit 9b950a8

Browse files
committed
format
1 parent 036a41c commit 9b950a8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ghcide/bench/lib/Experiments.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ module Experiments
2424
) where
2525
import Control.Applicative.Combinators (skipManyTill)
2626
import Control.Exception.Safe (IOException, handleAny, try)
27-
import Control.Monad.Extra
28-
( forM_, void, unless, forM, (&&^), allM, whenJust )
27+
import Control.Monad.Extra (allM, forM, forM_, unless,
28+
void, whenJust, (&&^))
2929
import Control.Monad.Fail (MonadFail)
3030
import Control.Monad.IO.Class
3131
import Data.Aeson (Value (Null), toJSON)
@@ -77,7 +77,7 @@ data DocumentPositions = DocumentPositions {
7777
allWithIdentifierPos :: MonadFail m => (DocumentPositions -> m Bool) -> [DocumentPositions] -> m Bool
7878
allWithIdentifierPos f docs = case applicableDocs of
7979
-- fail if there are no documents to benchmark
80-
[] -> fail "None of the example modules have identifier positions"
80+
[] -> fail "None of the example modules have identifier positions"
8181
docs' -> allM f docs'
8282
where
8383
applicableDocs = filter (isJust . identifierP) docs

0 commit comments

Comments
 (0)