Fix for Tall documentation

This commit is contained in:
Khudyakov Alexey
2009-05-16 10:47:53 +00:00
parent 8ec0bf3290
commit 2621f3f6a8

View File

@@ -52,8 +52,8 @@ instance LayoutClass Full a
-- | The builtin tiling mode of xmonad. Supports 'Shrink', 'Expand' and
-- 'IncMasterN'.
data Tall a = Tall { tallNMaster :: !Int -- ^ The default number of windows in the master pane (default: 1)
, tallRatio :: !Rational -- ^ Default proportion of screen occupied by master pane (default: 1/2)
, tallRatioIncrement :: !Rational } -- ^ Percent of screen to increment by when resizing panes (default: 3/100)
, 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)
deriving (Show, Read)
-- TODO should be capped [0..1] ..