aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vogt <vogt.adam@gmail.com>2014-05-11 19:17:35 +0200
committerAdam Vogt <vogt.adam@gmail.com>2014-05-11 19:17:35 +0200
commita05c40cb78ee69ff36fb34c78d2c38d0a69c56da (patch)
tree907674e1ac67996dad728b2fe9fe81601ec18c7c
parent234ad14187711ab4a4e913eeb37b89d40722dc00 (diff)
downloadxmonad-a05c40cb78ee69ff36fb34c78d2c38d0a69c56da.tar.gz
xmonad-a05c40cb78ee69ff36fb34c78d2c38d0a69c56da.tar.xz
xmonad-a05c40cb78ee69ff36fb34c78d2c38d0a69c56da.zip
minor formatting of manpage
Ignore-this: 980df75b1ff1fb769a404aad43b1101a darcs-hash:20140511171735-1499c-9669fd738dbdaeae9bf352bb4b2381a3f4d8fcf7.gz
-rw-r--r--man/xmonad.1.markdown8
1 files changed, 5 insertions, 3 deletions
diff --git a/man/xmonad.1.markdown b/man/xmonad.1.markdown
index fd59950..fb30cfc 100644
--- a/man/xmonad.1.markdown
+++ b/man/xmonad.1.markdown
@@ -76,7 +76,7 @@ To use xmonad as your window manager add to your _~/.xinitrc_ file:
> exec xmonad
#Customization
-xmonad is customized in ~/.xmonad/xmonad.hs, and then restarting
+xmonad is customized in ~/.xmonad/xmonad.hs, and then restarted
with mod-q.
You can find many extensions to the core feature set in the xmonad-
@@ -89,8 +89,10 @@ _~/.xmonad/lib/_ are available in GHC's searchpath. Hierarchical modules
are supported: for example, the file
_~/.xmonad/lib/XMonad/Stack/MyAdditions.hs_ could contain:
-> module XMonad.Stack.MyAdditions (function1) where
-> function1 = error "function1: Not implemented yet!"
+```haskell
+module XMonad.Stack.MyAdditions (function1) where
+ function1 = error "function1: Not implemented yet!"
+```
Your xmonad.hs may then import XMonad.Stack.MyAdditions as if that
module was contained within xmonad or xmonad-contrib.