fix haddock comment being assigned to constructor instead of field

This commit is contained in:
Tomas Janousek
2010-04-15 17:39:36 +00:00
parent ad4136df26
commit 684907bc77

View File

@@ -53,7 +53,8 @@ instance LayoutClass Full a
-- 'IncMasterN'.
data Tall a = Tall { tallNMaster :: !Int -- ^ The default number of windows in the master pane (default: 1)
, tallRatioIncrement :: !Rational -- ^ Percent of screen to increment by when resizing panes (default: 3/100)
, tallRatio :: !Rational } -- ^ Default proportion of screen occupied by master pane (default: 1/2)
, tallRatio :: !Rational -- ^ Default proportion of screen occupied by master pane (default: 1/2)
}
deriving (Show, Read)
-- TODO should be capped [0..1] ..