X.L.Mosaic: haddock fix

This commit is contained in:
Roman Cheplyaka
2009-01-24 23:59:08 +00:00
parent 5c849c1fc6
commit 22a7c39107

View File

@@ -15,6 +15,7 @@
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
module XMonad.Layout.Mosaic ( module XMonad.Layout.Mosaic (
-- $usage
Mosaic(..) Mosaic(..)
,Aspect(..) ,Aspect(..)
) )
@@ -49,10 +50,10 @@ import Data.Monoid(Monoid(mappend, mempty))
-- --
-- To change the choice in aspect ratio, add to your keybindings: -- To change the choice in aspect ratio, add to your keybindings:
-- --
-- , ((modMask, xK_a), sendMessage Taller) -- > , ((modMask, xK_a), sendMessage Taller)
-- , ((modMask, xK_z), sendMessage Wider) -- > , ((modMask, xK_z), sendMessage Wider)
-- , ((modMask, xK_s), sendMessage (SlopeMod (zipWith (*) [1..]))) -- > , ((modMask, xK_s), sendMessage (SlopeMod (zipWith (*) [1..])))
-- , ((modMask, xK_d), sendMessage (SlopeMod (zipWith (flip (/)) [1..]))) -- > , ((modMask, xK_d), sendMessage (SlopeMod (zipWith (flip (/)) [1..])))
-- --
-- For more detailed instructions on editing the layoutHook see: -- For more detailed instructions on editing the layoutHook see:
-- --