From d88bba8be695c975e782e522228ca2425495b02e Mon Sep 17 00:00:00 2001 From: Tom Smeding Date: Wed, 12 Feb 2025 23:35:15 +0100 Subject: [PATCH] Fix formatting --- Cabal/src/Distribution/Simple/Setup/Common.hs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Cabal/src/Distribution/Simple/Setup/Common.hs b/Cabal/src/Distribution/Simple/Setup/Common.hs index e9ec3d2ea16..1ac8105e604 100644 --- a/Cabal/src/Distribution/Simple/Setup/Common.hs +++ b/Cabal/src/Distribution/Simple/Setup/Common.hs @@ -275,7 +275,9 @@ programDbOption progDb showOrParseArgs get set = [prog ++ "-option"] ( "give an extra option to " ++ prog - ++ " (passed directly to " ++ prog ++ " as a single argument)" + ++ " (passed directly to " + ++ prog + ++ " as a single argument)" ) get set @@ -314,7 +316,8 @@ programDbOptions progDb showOrParseArgs get set = [prog ++ "-options"] ( "give extra options to " ++ prog - ++ " (split on spaces, \"quotes\" prevent splitting)") + ++ " (split on spaces, \"quotes\" prevent splitting)" + ) get set (reqArg' "OPTS" (\args -> [(prog, splitArgs args)]) (const []))