Repository : ssh://darcs.haskell.org//srv/darcs/packages/pretty On branch : master
http://hackage.haskell.org/trac/ghc/changeset/0f978d79465d2226b06656ee77e614011f567157 >--------------------------------------------------------------- commit 0f978d79465d2226b06656ee77e614011f567157 Author: David Terei <[email protected]> Date: Tue Jul 19 11:47:02 2011 -0700 Change metadata of modules >--------------------------------------------------------------- Text/PrettyPrint.hs | 17 ++++++++++------- Text/PrettyPrint/HughesPJ.hs | 11 ++++++----- 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/Text/PrettyPrint.hs b/Text/PrettyPrint.hs index e2f27a5..7365213 100644 --- a/Text/PrettyPrint.hs +++ b/Text/PrettyPrint.hs @@ -4,18 +4,21 @@ -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/base/LICENSE) -- --- Maintainer : [email protected] --- Stability : experimental +-- Maintainer : David Terei <[email protected]> +-- Stability : stable -- Portability : portable -- --- Re-export of "Text.PrettyPrint.HughesPJ" to provide a default --- pretty-printing library. Marked experimental at the moment; the --- default library might change at a later date. +-- The default interface to the pretty-printing library. Provides a collection +-- of pretty printer combinators. +-- +-- This should be used as opposed to the "Text.PrettyPrint.HughesPJ" module that +-- contains the actual implementation that this module simply re-exports. -- ----------------------------------------------------------------------------- module Text.PrettyPrint ( - module Text.PrettyPrint.HughesPJ - ) where + module Text.PrettyPrint.HughesPJ + ) where import Text.PrettyPrint.HughesPJ + diff --git a/Text/PrettyPrint/HughesPJ.hs b/Text/PrettyPrint/HughesPJ.hs index 2159c68..3c53431 100644 --- a/Text/PrettyPrint/HughesPJ.hs +++ b/Text/PrettyPrint/HughesPJ.hs @@ -1,11 +1,12 @@ +{-# OPTIONS_HADDOCK not-home #-} ----------------------------------------------------------------------------- -- | -- Module : Text.PrettyPrint.HughesPJ -- Copyright : (c) The University of Glasgow 2001 -- License : BSD-style (see the file libraries/base/LICENSE) -- --- Maintainer : [email protected] --- Stability : provisional +-- Maintainer : David Terei <[email protected]> +-- Stability : stable -- Portability : portable -- -- John Hughes's and Simon Peyton Jones's Pretty Printer Combinators @@ -15,7 +16,7 @@ -- Johan Jeuring and Erik Meijer (eds), LNCS 925 -- <http://www.cs.chalmers.se/~rjmh/Papers/pretty.ps> -- --- Heavily modified by Simon Peyton Jones, Dec 96 +-- Heavily modified by Simon Peyton Jones (December 1996). -- ----------------------------------------------------------------------------- @@ -211,9 +212,9 @@ module Text.PrettyPrint.HughesPJ ( -- ** General rendering fullRender, - Mode(..), TextDetails(..), + Mode(..), TextDetails(..) - ) where + ) where import Prelude _______________________________________________ Cvs-libraries mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-libraries
