aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad
diff options
context:
space:
mode:
authorgwern0 <gwern0@gmail.com>2008-06-29 13:55:04 +0200
committergwern0 <gwern0@gmail.com>2008-06-29 13:55:04 +0200
commit54164f5158089d30a0ad367f529245879cd7f63a (patch)
tree136ab7f8dabd515344cf031db7f8899a27d327d8 /XMonad
parentb83729bf02a2d0641afefa24f4a132c7d126702f (diff)
downloadXMonadContrib-54164f5158089d30a0ad367f529245879cd7f63a.tar.gz
XMonadContrib-54164f5158089d30a0ad367f529245879cd7f63a.tar.xz
XMonadContrib-54164f5158089d30a0ad367f529245879cd7f63a.zip
fix Actions.Wap doc
warp 1 1 has a comment claiming that this moves the cursor to the lower *left*, but if you look at the warpToWindow haddock, it says that 1 1 is actually lower *right* - as indeed it proved to do. This was annoying as it led me astray for a minute or so. darcs-hash:20080629115504-f7719-817bf2cf8a6d63688cd170daf6775d5e187c4d7f.gz
Diffstat (limited to 'XMonad')
-rw-r--r--XMonad/Actions/Warp.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/XMonad/Actions/Warp.hs b/XMonad/Actions/Warp.hs
index 9e08765..d943c5f 100644
--- a/XMonad/Actions/Warp.hs
+++ b/XMonad/Actions/Warp.hs
@@ -45,7 +45,7 @@ ways. Suppose you wanted to emulate Ratpoison's \'banish\' command,
which moves the mouse pointer to a corner; you could define:
> banish :: X ()
-> banish = warpToWindow 1 1 -- lower left
+> banish = warpToWindow 1 1 -- lower right
-}