Commit c0e7d553 authored by Vaibhav Sagar's avatar Vaibhav Sagar

ihaskell-widgets: fix Haddock generation

Haddock doesn't seem to work with comments between the module name and
the import statements.
parent 3382c899
...@@ -15,8 +15,6 @@ ...@@ -15,8 +15,6 @@
{-# LANGUAGE GADTs #-} {-# LANGUAGE GADTs #-}
{-# LANGUAGE AutoDeriveTypeable #-} {-# LANGUAGE AutoDeriveTypeable #-}
module IHaskell.Display.Widgets.Types where
-- | This module houses all the type-trickery needed to make widgets happen. -- | This module houses all the type-trickery needed to make widgets happen.
-- --
-- All widgets have a corresponding 'WidgetType', and some fields/attributes/properties as defined -- All widgets have a corresponding 'WidgetType', and some fields/attributes/properties as defined
...@@ -61,6 +59,8 @@ module IHaskell.Display.Widgets.Types where ...@@ -61,6 +59,8 @@ module IHaskell.Display.Widgets.Types where
-- --
-- Widgets are not able to do console input, the reason for that can be found in the messaging -- Widgets are not able to do console input, the reason for that can be found in the messaging
-- specification. -- specification.
module IHaskell.Display.Widgets.Types where
import Control.Monad (unless, join, when, void) import Control.Monad (unless, join, when, void)
import Control.Applicative ((<$>)) import Control.Applicative ((<$>))
import qualified Control.Exception as Ex import qualified Control.Exception as Ex
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment