From 1054a0200a728dad5e9de97fc1057612ab8227c2 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sun, 5 May 2019 17:33:29 +0100 Subject: Format with brittany --- app/Main.hs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'app') diff --git a/app/Main.hs b/app/Main.hs index 18173ba..8da1151 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -80,13 +80,13 @@ fuzzOpts = <*> (switch $ long "keep" <> short 'k' <> help "Keep all the directories." ) - <*> (option auto $ - long "num" - <> short 'n' - <> help "The number of fuzz runs that should be performed." - <> showDefault - <> value 1 - <> metavar "INT" + <*> ( option auto + $ long "num" + <> short 'n' + <> help "The number of fuzz runs that should be performed." + <> showDefault + <> value 1 + <> metavar "INT" ) genOpts :: Parser Opts @@ -209,8 +209,8 @@ handleOpts :: Opts -> IO () handleOpts (Fuzz out configF _ _ n) = do config <- getConfig configF _ <- V.runFuzz config - V.defaultYosys - (V.fuzzMultiple n Nothing (V.proceduralSrc "top" config)) + V.defaultYosys + (V.fuzzMultiple n Nothing (V.proceduralSrc "top" config)) return () handleOpts (Generate f c) = do config <- getConfig c -- cgit