Skip to content

Commit

Permalink
Update comments. Add header for Common.
Browse files Browse the repository at this point in the history
  • Loading branch information
spl committed Jun 22, 2009
1 parent 8168319 commit 2e8275a
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions src/Text/XFormat/Common.hs
@@ -1,4 +1,19 @@


--------------------------------------------------------------------------------
-- |
-- Module : Text.XFormat.Common
-- Copyright : (c) 2009 Sean Leather
-- License : BSD3
--
-- Maintainer : leather@cs.uu.nl
-- Stability : experimental
-- Portability : non-portable
--
-- This module defines format descriptors for use with the modules
-- "Text.XFormat.Read" and "Text.XFormat.Show". There is no need for this module
-- to be exposed.
--------------------------------------------------------------------------------

module Text.XFormat.Common where module Text.XFormat.Common where


data d1 :%: d2 = d1 :%: d2 data d1 :%: d2 = d1 :%: d2
Expand Down
4 changes: 2 additions & 2 deletions src/Text/XFormat/Read.hs
Expand Up @@ -8,14 +8,14 @@
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
-- | -- |
-- Module : Text.XFormat.Read -- Module : Text.XFormat.Read
-- Copyright : (c) Sean Leather -- Copyright : (c) 2009 Sean Leather
-- License : BSD3 -- License : BSD3
-- --
-- Maintainer : leather@cs.uu.nl -- Maintainer : leather@cs.uu.nl
-- Stability : experimental -- Stability : experimental
-- Portability : non-portable -- Portability : non-portable
-- --
-- This module defines a simple, extensible, type-indexed function for reading -- This module defines an extensible, type-indexed function for reading
-- well-typed values from a string with a format descriptor. This may be -- well-typed values from a string with a format descriptor. This may be
-- considered a Haskell variant of the C @scanf@ function. -- considered a Haskell variant of the C @scanf@ function.
-- --
Expand Down
4 changes: 2 additions & 2 deletions src/Text/XFormat/Show.hs
Expand Up @@ -9,14 +9,14 @@
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
-- | -- |
-- Module : Text.XFormat.Show -- Module : Text.XFormat.Show
-- Copyright : (c) Sean Leather -- Copyright : (c) 2009 Sean Leather
-- License : BSD3 -- License : BSD3
-- --
-- Maintainer : leather@cs.uu.nl -- Maintainer : leather@cs.uu.nl
-- Stability : experimental -- Stability : experimental
-- Portability : non-portable -- Portability : non-portable
-- --
-- This module defines a simple, extensible, type-indexed function for showing -- This module defines an extensible, type-indexed function for showing
-- well-typed values with a format descriptor. This may be considered a Haskell -- well-typed values with a format descriptor. This may be considered a Haskell
-- variant of the C @printf@ function. -- variant of the C @printf@ function.
-- --
Expand Down

0 comments on commit 2e8275a

Please sign in to comment.