Grid: haddock fixes

This commit is contained in:
Andrea Rossato
2007-11-21 18:16:16 +00:00
parent fd4e59e71c
commit e522c5e9db

View File

@@ -25,16 +25,18 @@ import XMonad.StackSet
import Graphics.X11.Xlib.Types import Graphics.X11.Xlib.Types
-- $usage -- $usage
-- Put the following in your Config.hs file: -- You can use this module with the following in your @~\/.xmonad\/xmonad.hs@:
-- --
-- > import XMonad.Layout.Grid -- > import XMonad.Layout.Grid
-- > ... --
-- > layouts = [ ... -- Then edit your @layoutHook@ by adding the Grid layout:
-- > , Layout Grid --
-- > ] -- > myLayouts = Grid ||| Full ||| etc..
-- > main = xmonad dafaultConfig { layoutHook = myLayouts }
-- %import XMonad.Layout.Grid --
-- %layout , Layout Grid -- For more detailed instructions on editing the layoutHook see:
--
-- "XMonad.Doc.Extending#Editing_the_layout_hook"
data Grid a = Grid deriving (Read, Show) data Grid a = Grid deriving (Read, Show)