diff options
author | gwern0 <gwern0@gmail.com> | 2010-06-20 19:57:41 +0200 |
---|---|---|
committer | gwern0 <gwern0@gmail.com> | 2010-06-20 19:57:41 +0200 |
commit | 839cfc0adc9ee33afcf7a178e35a013434f03268 (patch) | |
tree | ba337e0d5952a70bbc464d140c329d874ac359c1 | |
parent | 321ac12b981c45a76483bab3d802c69df0d350c4 (diff) | |
download | metatile-839cfc0adc9ee33afcf7a178e35a013434f03268.tar metatile-839cfc0adc9ee33afcf7a178e35a013434f03268.zip |
XMonad.Core: escape slashes, ln module
Ignore-this: 436bd4d12e73c0fbb46a946d6dfb5306
darcs-hash:20100620175741-f7719-02c5812f3dc4a27f3ee77b8692a5d207a9732351
-rw-r--r-- | XMonad/Core.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/XMonad/Core.hs b/XMonad/Core.hs index 8acada8..645a265 100644 --- a/XMonad/Core.hs +++ b/XMonad/Core.hs @@ -68,7 +68,7 @@ data XState = XState , extensibleState :: !(M.Map String (Either String StateExtension)) -- ^ stores custom state information. -- - -- The module XMonad.Utils.ExtensibleState in xmonad-contrib + -- The module "XMonad.Utils.ExtensibleState" in xmonad-contrib -- provides additional information and a simple interface for using this. } @@ -389,7 +389,7 @@ catchIO :: MonadIO m => IO () -> m () catchIO f = io (f `catch` \(SomeException e) -> hPrint stderr e >> hFlush stderr) -- | spawn. Launch an external application. Specifically, it double-forks and --- runs the 'String' you pass as a command to /bin/sh. +-- runs the 'String' you pass as a command to \/bin\/sh. spawn :: MonadIO m => String -> m () spawn x = spawnPID x >> return () |