Docs: use myLayout like template rather than plural

Despite myLayouts currently being more popular in examples, make
them all myLayout as in man/xmonad.hs to avoid mixing them in the
same module as was done a few places, leading to confusion for some users.
This commit is contained in:
Wirt Wolff
2009-10-23 04:26:51 +00:00
parent 5417286d6a
commit 06a1322366
38 changed files with 81 additions and 81 deletions

View File

@@ -34,8 +34,8 @@ import Data.List ( partition )
--
-- Then edit your @layoutHook@ by adding the Maximize layout modifier:
--
-- > myLayouts = maximize (Tall 1 (3/100) (1/2)) ||| Full ||| etc..
-- > main = xmonad defaultConfig { layoutHook = myLayouts }
-- > myLayout = maximize (Tall 1 (3/100) (1/2)) ||| Full ||| etc..
-- > main = xmonad defaultConfig { layoutHook = myLayout }
--
-- For more detailed instructions on editing the layoutHook see:
--