summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Janousek <tomi@nomi.cz>2010-04-15 19:39:36 +0200
committerTomas Janousek <tomi@nomi.cz>2010-04-15 19:39:36 +0200
commit321ac12b981c45a76483bab3d802c69df0d350c4 (patch)
tree45c26b8c0489a27becde99d4384910c3068187aa
parentb04e2af051815dd2107769d22c31c62d24e4d1f4 (diff)
downloadmetatile-321ac12b981c45a76483bab3d802c69df0d350c4.tar
metatile-321ac12b981c45a76483bab3d802c69df0d350c4.zip
fix haddock comment being assigned to constructor instead of field
Ignore-this: 55ac1c5dadc88a0d7635d8952feb40a0 darcs-hash:20100415173936-c9ff5-505c98e1de70a1a5f616d8f3bb260a431d165f6c
-rw-r--r--XMonad/Layout.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/XMonad/Layout.hs b/XMonad/Layout.hs
index faa2246..a8821d5 100644
--- a/XMonad/Layout.hs
+++ b/XMonad/Layout.hs
@@ -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] ..