aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad
diff options
context:
space:
mode:
authorNils Schweinsberg <mail@n-sch.de>2010-02-22 12:51:42 +0100
committerNils Schweinsberg <mail@n-sch.de>2010-02-22 12:51:42 +0100
commit578fff98a710ba0014a9f44e3a750a7d8e7240d6 (patch)
tree993d2b38804c54a5315fcdf21db5fa2e64a10f93 /XMonad
parentdb8c2064b5e450426b71373fc5c090e1ef36e960 (diff)
downloadXMonadContrib-578fff98a710ba0014a9f44e3a750a7d8e7240d6.tar.gz
XMonadContrib-578fff98a710ba0014a9f44e3a750a7d8e7240d6.tar.xz
XMonadContrib-578fff98a710ba0014a9f44e3a750a7d8e7240d6.zip
X.H.ScreenCorners typos
Ignore-this: 805ba06f6215bb83a68631f750743830 darcs-hash:20100222115142-1f2e3-d571e8da04d250c0d2510d77691e423bbb57249f.gz
Diffstat (limited to 'XMonad')
-rw-r--r--XMonad/Hooks/ScreenCorners.hs8
1 files changed, 4 insertions, 4 deletions
diff --git a/XMonad/Hooks/ScreenCorners.hs b/XMonad/Hooks/ScreenCorners.hs
index 33db7a5..ee016c4 100644
--- a/XMonad/Hooks/ScreenCorners.hs
+++ b/XMonad/Hooks/ScreenCorners.hs
@@ -9,7 +9,7 @@
-- Stability : unstable
-- Portability : unportable
--
--- Run @X ()@ actions by touching the edge of your screen the your mouse.
+-- Run @X ()@ actions by touching the edge of your screen with your mouse.
--
-----------------------------------------------------------------------------
@@ -149,8 +149,8 @@ screenCornerEventHook _ = return (All True)
--
-- This extension adds KDE-like screen corners to XMonad. By moving your cursor
-- into one of your screen corners you can trigger an @X ()@ action, for
--- example "XMonad.Actions.GridSelect".gotoSelected or
--- "XMonad.Actions.CycleWS".nextWS etc.
+-- example @"XMonad.Actions.GridSelect".goToSelected@ or
+-- @"XMonad.Actions.CycleWS".nextWS@ etc.
--
-- To use it, import it on top of your @xmonad.hs@:
--
@@ -165,7 +165,7 @@ screenCornerEventHook _ = return (All True)
-- > , (SCLowerLeft, prevWS)
-- > ]
--
--- Then wait for screen corner events in your event hook:
+-- And finally wait for screen corner events in your event hook:
--
-- > myEventHook e = do
-- > ...