aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDevin Mullins <devinmullins@gmail.com>2014-09-15 10:06:01 +0200
committerDevin Mullins <devinmullins@gmail.com>2014-09-15 10:06:01 +0200
commit644eea8a960ec70d3147e88a43ef1a82d2fb7c17 (patch)
tree6def721078726c59c057d8b6d29af3bb5f4f3c76
parentdff942926a3266e9efe94fc3e97c3c4930de795b (diff)
downloadXMonadContrib-644eea8a960ec70d3147e88a43ef1a82d2fb7c17.tar.gz
XMonadContrib-644eea8a960ec70d3147e88a43ef1a82d2fb7c17.tar.xz
XMonadContrib-644eea8a960ec70d3147e88a43ef1a82d2fb7c17.zip
X.C.Prime: doc fixes
Ignore-this: 15e3c445a99d3b2d3a235aa76119797 darcs-hash:20140915080601-c7120-85fa97c7a8b5ae09fc092930f313c7ab050a7f4b.gz
-rw-r--r--XMonad/Config/Prime.hs10
1 files changed, 5 insertions, 5 deletions
diff --git a/XMonad/Config/Prime.hs b/XMonad/Config/Prime.hs
index c9a5d70..04f1985 100644
--- a/XMonad/Config/Prime.hs
+++ b/XMonad/Config/Prime.hs
@@ -123,8 +123,8 @@ import XMonad.Util.EZConfig (additionalKeysP, additionalMouseBindings, checkKeym
-- starting with double dashes are comments. You may delete them. Note that
-- Haskell is a bit precise about indentation. Make sure all the statements in
-- your do-block start at the same column, and make sure that any multi-line
--- statements are indented further on the subsequent lines. (For an example,
--- see the 'addKeys' statement in the /Example config/ section, below.)
+-- statements are formatted with a hanging indent. (For an example, see the
+-- 'keys =+' statement in the /Example config/ section, below.)
--
-- The Prime "Monad"
@@ -138,9 +138,9 @@ type Prime l l' = XConfig l -> IO (XConfig l')
(>>) :: Prime l l' -> Prime l' l'' -> Prime l l''
(>>) x y c = (P.>>=) (x c) y
--- | This is the xmonad main function. It passes the default config
--- 'XMonad.Config.def' to your do-block, takes the modified config out of your
--- do-block, and runs xmonad.
+-- | This is the xmonad main function. It passes 'XMonad.Config.def' (the
+-- default 'XConfig') into your do-block, takes the modified config out of your
+-- do-block, and then runs xmonad.
--
-- The do-block is a 'Prime'. Advanced readers can skip right to that
-- definition.