From ddb522d0cb16dc32eb2bcacf1ea751513fabe9ed Mon Sep 17 00:00:00 2001 From: gwern0 Date: Sun, 29 Jun 2008 11:55:04 +0000 Subject: [PATCH] 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. --- XMonad/Actions/Warp.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/XMonad/Actions/Warp.hs b/XMonad/Actions/Warp.hs index 9e087655..d943c5f6 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 -}