summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-09-15 11:32:47 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-09-15 11:32:47 -0400
commit9fef3976335acbeeef12e3b8d12d28117779127f (patch)
tree861a05fa32f7e70f85fd566060bfcf419ed9fe6d
parent075a1e8f3e414adc282128e5b1cfbc02ffae1fab (diff)
I've been not documenting these import Preludes used to deal with the AMP transition
-rw-r--r--Utility/OptParse.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Utility/OptParse.hs b/Utility/OptParse.hs
index 8fb0affe0..c65a18c24 100644
--- a/Utility/OptParse.hs
+++ b/Utility/OptParse.hs
@@ -9,7 +9,7 @@ module Utility.OptParse where
import Options.Applicative
import Data.Monoid
-import Prelude -- Fix redundant import warning
+import Prelude
-- | A switch that can be enabled using --foo and disabled using --no-foo.
--