diff options
author | Valery V. Vorotyntsev <valery.vv@gmail.com> | 2007-11-22 10:18:28 +0100 |
---|---|---|
committer | Valery V. Vorotyntsev <valery.vv@gmail.com> | 2007-11-22 10:18:28 +0100 |
commit | df17fa01c4fc8cf753e2499872ebfbf43f6655f7 (patch) | |
tree | 9cc35199b21531906f1925f15a5cc1ea5b2e7f58 /XMonad | |
parent | f94cf80af8667e894157f87a2e13affcceb1b8a8 (diff) | |
download | XMonadContrib-df17fa01c4fc8cf753e2499872ebfbf43f6655f7.tar.gz XMonadContrib-df17fa01c4fc8cf753e2499872ebfbf43f6655f7.tar.xz XMonadContrib-df17fa01c4fc8cf753e2499872ebfbf43f6655f7.zip |
Prompt/Man.hs: fixing haddock
darcs-hash:20071122091828-ae588-e7953336858148314ed68056c16b5389f755a634.gz
Diffstat (limited to 'XMonad')
-rw-r--r-- | XMonad/Prompt/Man.hs | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/XMonad/Prompt/Man.hs b/XMonad/Prompt/Man.hs index 56d3532..265abed 100644 --- a/XMonad/Prompt/Man.hs +++ b/XMonad/Prompt/Man.hs @@ -4,9 +4,8 @@ -- Copyright : (c) 2007 Valery V. Vorotyntsev -- License : BSD3-style (see LICENSE) -- --- Maintainer : valery.vv@gmail.com --- Stability : unstable --- Portability : non-portable (uses \"manpath\" and \"bash\") +-- Maintainer : Valery V. Vorotyntsev <valery.vv@gmail.com> +-- Portability : non-portable (uses "manpath" and "bash") -- -- A manual page prompt for XMonad window manager. -- @@ -15,15 +14,15 @@ -- * narrow completions by section number, if the one is specified -- (like @\/etc\/bash_completion@ does) -- --- * test with QuickCheck +-- * write QuickCheck properties ----------------------------------------------------------------------------- module XMonad.Prompt.Man ( - -- * Usage - -- $usage - manPrompt - , getCommandOutput - ) where + -- * Usage + -- $usage + manPrompt + , getCommandOutput + ) where import XMonad import XMonad.Prompt @@ -80,7 +79,7 @@ manCompl str | '/' `elem` str = do -- | Run a command using shell and return its output. -- --- XXX merge with 'Run.runProcessWithInput'? +-- XXX merge with 'XMonad.Util.Run.runProcessWithInput'? -- -- * update documentation of the latter (there is no 'Maybe' in result) -- |