diff options
author | gwern0 <gwern0@gmail.com> | 2008-06-29 13:55:04 +0200 |
---|---|---|
committer | gwern0 <gwern0@gmail.com> | 2008-06-29 13:55:04 +0200 |
commit | 54164f5158089d30a0ad367f529245879cd7f63a (patch) | |
tree | 136ab7f8dabd515344cf031db7f8899a27d327d8 /XMonad/Actions | |
parent | b83729bf02a2d0641afefa24f4a132c7d126702f (diff) | |
download | XMonadContrib-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/Actions')
-rw-r--r-- | XMonad/Actions/Warp.hs | 2 |
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 -} |