Skip to content

Commit 6e9d0bb

Browse files
committed
Use void as suggested by hlint
1 parent b477075 commit 6e9d0bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ghcide/src/Development/IDE/Core/FileStore.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ typecheckParentsAction nfp = do
289289
Just rs -> do
290290
liftIO $ (log $ "Typechecking reverse dependencies for " ++ show nfp ++ ": " ++ show revs)
291291
`catch` \(e :: SomeException) -> log (show e)
292-
() <$ uses GetModIface rs
292+
void $ uses GetModIface rs
293293

294294
-- | Note that some keys have been modified and restart the session
295295
-- Only valid if the virtual file system was initialised by LSP, as that

0 commit comments

Comments
 (0)