diff options
author | Brent Yorgey <byorgey@gmail.com> | 2007-11-20 18:29:47 +0100 |
---|---|---|
committer | Brent Yorgey <byorgey@gmail.com> | 2007-11-20 18:29:47 +0100 |
commit | 42ff36aad26753fe8f20d0245378cb38db97ace0 (patch) | |
tree | 044e81e19c04cc7ca3e953ebc3cc34f1a80a1135 | |
parent | 48c942cea745a4d400c4ca894a69fc0f5e92d39c (diff) | |
download | XMonadContrib-42ff36aad26753fe8f20d0245378cb38db97ace0.tar.gz XMonadContrib-42ff36aad26753fe8f20d0245378cb38db97ace0.tar.xz XMonadContrib-42ff36aad26753fe8f20d0245378cb38db97ace0.zip |
Doc.hs: remove modules from export list.
Apparently GHC 6.8.1 issues a warning when a re-exported module does not
itself export anything.
darcs-hash:20071120172947-bd4d7-f022d124f21093b61303eb7524cb57c075d8beaf.gz
-rw-r--r-- | XMonad/Doc.hs | 27 |
1 files changed, 12 insertions, 15 deletions
diff --git a/XMonad/Doc.hs b/XMonad/Doc.hs index a77bb09..3796878 100644 --- a/XMonad/Doc.hs +++ b/XMonad/Doc.hs @@ -28,22 +28,18 @@ module XMonad.Doc -- * Configuring xmonad -- $configuring - module XMonad.Doc.Configuring, -- * Extending xmonad with the xmonad-contrib library -- $extending - module XMonad.Doc.Extending, -- * Developing xmonad: an brief code commentary -- $developing - module XMonad.Doc.Developing ) where - -import XMonad.Doc.Configuring -import XMonad.Doc.Extending -import XMonad.Doc.Developing +import XMonad.Doc.Configuring () +import XMonad.Doc.Extending () +import XMonad.Doc.Developing () -------------------------------------------------------------------------------- -- @@ -68,23 +64,24 @@ release. You can find the tarball here {- $configuring -This module is dedicated at configuring xmonad. A brief tutorial will -guide you through the basic configuration steps. +"XMonad.Doc.Configuring" is dedicated at configuring xmonad. A brief +tutorial will guide you through the basic configuration steps. -} {- $extending -This module is dedicated at extending xmonad with the xmonad-contrib -library. You will find an overview of the library and instruction on -installing contributed extensions. +"XMonad.Doc.Extending" is dedicated at extending xmonad with the +xmonad-contrib library. You will find an overview of the library and +instruction on installing contributed extensions. -} {- $developing -This module consists of a brief description of the xmonad internals. -It is mainly intended for contributors and basically provides a brief -code commentary with link to the source code documentation. +"XMonad.Doc.Developing" consists of a brief description of the xmonad +internals. It is mainly intended for contributors and basically +provides a brief code commentary with link to the source code +documentation. -}
\ No newline at end of file |