Circle: haddock fixes

This commit is contained in:
Andrea Rossato 2007-11-21 18:14:41 +00:00
parent 8cef719a61
commit aad6a7d747

View File

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