aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Actions
diff options
context:
space:
mode:
authorShachaf Ben-Kiki <shachaf@gmail.com>2007-11-19 00:03:19 +0100
committerShachaf Ben-Kiki <shachaf@gmail.com>2007-11-19 00:03:19 +0100
commit2ccdb6b9f9a618a5615c0fe9e42414def4ae7cf0 (patch)
tree79948fd1e882fb9605220d156fe42425c244f055 /XMonad/Actions
parente45f4e1876ba3f6ea55f3af3d1e52d07131e4bc5 (diff)
downloadXMonadContrib-2ccdb6b9f9a618a5615c0fe9e42414def4ae7cf0.tar.gz
XMonadContrib-2ccdb6b9f9a618a5615c0fe9e42414def4ae7cf0.tar.xz
XMonadContrib-2ccdb6b9f9a618a5615c0fe9e42414def4ae7cf0.zip
Miscellaneous spell-checking
darcs-hash:20071118230319-bffde-6c56202afece4ecc55d48d37bde3f80edaff66f7.gz
Diffstat (limited to 'XMonad/Actions')
-rw-r--r--XMonad/Actions/CopyWindow.hs2
-rw-r--r--XMonad/Actions/FloatKeys.hs2
-rw-r--r--XMonad/Actions/TagWindows.hs2
3 files changed, 3 insertions, 3 deletions
diff --git a/XMonad/Actions/CopyWindow.hs b/XMonad/Actions/CopyWindow.hs
index cb6a619..08c5126 100644
--- a/XMonad/Actions/CopyWindow.hs
+++ b/XMonad/Actions/CopyWindow.hs
@@ -64,7 +64,7 @@ copy n = copy'
insertUp' a s = modify (Just $ Stack a [] [])
(\(Stack t l r) -> Just $ Stack a (L.delete a l) (L.delete a (t:r))) s
--- | Remove the focussed window from this workspace. If it's present in no
+-- | Remove the focused window from this workspace. If it's present in no
-- other workspace, then kill it instead. If we do kill it, we'll get a
-- delete notify back from X.
--
diff --git a/XMonad/Actions/FloatKeys.hs b/XMonad/Actions/FloatKeys.hs
index 52ca90e..31784d1 100644
--- a/XMonad/Actions/FloatKeys.hs
+++ b/XMonad/Actions/FloatKeys.hs
@@ -53,7 +53,7 @@ import Graphics.X11.Xlib.Extras
-- keysResizeWindow (-10, -10) (0, 1) shrinks the window in direction of the bottom-left corner
--
-- keysAbsResizeWindow (dx, dy) (ax, ay) changes the width by dx and the height by dy leaving the screen
--- absolut point (ax, ay) fixed
+-- absolute point (ax, ay) fixed
--
-- examples on a 1024x768 screen: keysAbsResizeWindow (10, 10) (0, 0) enlarge the window and if it is not in the top-left corner it will also be moved away
--
diff --git a/XMonad/Actions/TagWindows.hs b/XMonad/Actions/TagWindows.hs
index 938eb10..d28aeeb 100644
--- a/XMonad/Actions/TagWindows.hs
+++ b/XMonad/Actions/TagWindows.hs
@@ -59,7 +59,7 @@ import XMonad hiding (workspaces)
-- > , ((modWinMask .|. shiftMask, xK_g ), tagPrompt defaultXPConfig (\s -> withTaggedGlobalP s shiftHere))
-- > , ((modWinMask .|. controlMask, xK_g), tagPrompt defaultXPConfig (\s -> focusUpTaggedGlobal s))
--
--- NOTE: Tags are saved as space seperated string and split with 'unwords' thus
+-- NOTE: Tags are saved as space separated string and split with 'unwords' thus
-- if you add a tag "a b" the window will have the tags "a" and "b" but not "a b".
-- %import XMonad.Actions.TagWindows