Skip to content

Commit

Permalink
🔥 redundant parens.
Browse files Browse the repository at this point in the history
  • Loading branch information
robrix committed Oct 22, 2020
1 parent dc66ad0 commit 4631e83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Facet/REPL.hs
Expand Up @@ -159,7 +159,7 @@ loop = do
Paths -> do
searchPaths <- gets (toList . searchPaths)
unless (null searchPaths)
$ print $ pretty "search paths:" <\> (nest 2 (unlines (map pretty searchPaths)))
$ print $ pretty "search paths:" <\> nest 2 (unlines (map pretty searchPaths))
-- FIXME: show module names
Modules -> gets (unlines . map pretty . Map.keys . files) >>= print
Add Paths path -> searchPaths_ %= Set.insert path
Expand Down

0 comments on commit 4631e83

Please sign in to comment.