aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Layout/Minimize.hs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--XMonad/Layout/Minimize.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/XMonad/Layout/Minimize.hs b/XMonad/Layout/Minimize.hs
index dca7600..37462a4 100644
--- a/XMonad/Layout/Minimize.hs
+++ b/XMonad/Layout/Minimize.hs
@@ -43,8 +43,8 @@ import Data.List
--
-- In the key-bindings, do something like:
--
--- > , ((modMask', xK_m ), withFocused (\f -> sendMessage (MinimizeWin f)))
--- > , ((modMask' .|. shiftMask, xK_m ), sendMessage RestoreNextMinimizedWin)
+-- > , ((modm, xK_m ), withFocused (\f -> sendMessage (MinimizeWin f)))
+-- > , ((modm .|. shiftMask, xK_m ), sendMessage RestoreNextMinimizedWin)
--
-- The first action will minimize the focused window, while the second one will restore
-- the next minimized window.