aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad
diff options
context:
space:
mode:
authorDevin Mullins <devinmullins@gmail.com>2014-10-01 09:58:55 +0200
committerDevin Mullins <devinmullins@gmail.com>2014-10-01 09:58:55 +0200
commit9373baf2915a036e990f7c9ff028d98b1381a5ae (patch)
tree7c0d5f56afd08666ed8892e41e91e1db118f15f1 /XMonad
parent7089e9b5ffab5348e6413fda6a620ff459b68edd (diff)
downloadXMonadContrib-9373baf2915a036e990f7c9ff028d98b1381a5ae.tar.gz
XMonadContrib-9373baf2915a036e990f7c9ff028d98b1381a5ae.tar.xz
XMonadContrib-9373baf2915a036e990f7c9ff028d98b1381a5ae.zip
X.C.Prime: doc fixes
Ignore-this: dbbe00791b04df61dcd595c50333fba darcs-hash:20141001075855-c7120-f61a9682f795dc8783820050ac75ee35fa07a51a.gz
Diffstat (limited to 'XMonad')
-rw-r--r--XMonad/Config/Prime.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/XMonad/Config/Prime.hs b/XMonad/Config/Prime.hs
index ff08cdb..c9b2f09 100644
--- a/XMonad/Config/Prime.hs
+++ b/XMonad/Config/Prime.hs
@@ -486,7 +486,7 @@ wsSetName index newName = wsNames =. (map maybeSet . zip [0..])
-- | Configure screen keys through a Prime-like interface:
--
-- > withScreens $ do
--- > sKeys =+ ["e", "r"]
+-- > sKeys =: ["e", "r"]
--
-- This will add the necessary keybindings to 'keys'. Note that it won't remove
-- old keybindings; it's just not that clever.
@@ -526,7 +526,7 @@ sKeys = Summable sKeys_ (\x c -> c { sKeys_ = x }) (++)
sActions :: Summable [(String, ScreenId -> X ())] [(String, ScreenId -> X ())] ScreenConfig
sActions = Summable sActions_ (\x c -> c { sActions_ = x }) (++)
--- Converts a stackset transformer parameterized on the workspace type into one
+-- | Converts a stackset transformer parameterized on the workspace type into one
-- parameterized on the screen type. For example, you can use @onScreens W.view
-- 0@ to navigate to the workspace on the 0th screen. If the screen id is not
-- recognized, the returned transformer acts as an identity function.