aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Layout/MouseResizableTile.hs
diff options
context:
space:
mode:
Diffstat (limited to 'XMonad/Layout/MouseResizableTile.hs')
-rw-r--r--XMonad/Layout/MouseResizableTile.hs8
1 files changed, 4 insertions, 4 deletions
diff --git a/XMonad/Layout/MouseResizableTile.hs b/XMonad/Layout/MouseResizableTile.hs
index d82c80e..6af586b 100644
--- a/XMonad/Layout/MouseResizableTile.hs
+++ b/XMonad/Layout/MouseResizableTile.hs
@@ -35,13 +35,13 @@ import XMonad.Util.XUtils
-- Either in its normal form or the mirrored version. (The mirror layout modifier
-- will not work correctly here because of the use of the mouse.)
--
--- > myLayouts = mouseResizableTile ||| etc..
--- > main = xmonad defaultConfig { layoutHook = myLayouts }
+-- > myLayout = mouseResizableTile ||| etc..
+-- > main = xmonad defaultConfig { layoutHook = myLayout }
--
-- or
--
--- > myLayouts = mouseResizableTileMirrored ||| etc..
--- > main = xmonad defaultConfig { layoutHook = myLayouts }
+-- > myLayout = mouseResizableTileMirrored ||| etc..
+-- > main = xmonad defaultConfig { layoutHook = myLayout }
--
-- For more detailed instructions on editing the layoutHook see:
--