aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDevin Mullins <devinmullins@gmail.com>2014-09-14 09:53:52 +0200
committerDevin Mullins <devinmullins@gmail.com>2014-09-14 09:53:52 +0200
commitdff942926a3266e9efe94fc3e97c3c4930de795b (patch)
tree38fefa850afd517f9cb26c2b3f249a3649e14530
parent0e15f95573b46f5cd0ffe8c701de1bb72aae15ff (diff)
downloadXMonadContrib-dff942926a3266e9efe94fc3e97c3c4930de795b.tar.gz
XMonadContrib-dff942926a3266e9efe94fc3e97c3c4930de795b.tar.xz
XMonadContrib-dff942926a3266e9efe94fc3e97c3c4930de795b.zip
X.C.Prime: fix 'def' hyperlink in doc
Ignore-this: a1de1d81a5f140ab7d90edbf393e9bda darcs-hash:20140914075352-c7120-88dac442b73a2700de15a064f36692bfd90c5e99.gz
-rw-r--r--XMonad/Config/Prime.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/XMonad/Config/Prime.hs b/XMonad/Config/Prime.hs
index 50a4e8c..c9a5d70 100644
--- a/XMonad/Config/Prime.hs
+++ b/XMonad/Config/Prime.hs
@@ -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 '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 the default config
+-- 'XMonad.Config.def' to your do-block, takes the modified config out of your
+-- do-block, and runs xmonad.
--
-- The do-block is a 'Prime'. Advanced readers can skip right to that
-- definition.