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.
This commit is contained in:
gwern0 2008-06-29 11:55:04 +00:00
parent 2dc1b0c5f7
commit ddb522d0cb

View File

@ -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: which moves the mouse pointer to a corner; you could define:
> banish :: X () > banish :: X ()
> banish = warpToWindow 1 1 -- lower left > banish = warpToWindow 1 1 -- lower right
-} -}