diff options
author | David Waern <david.waern@gmail.com> | 2009-06-24 22:23:23 +0000 |
---|---|---|
committer | David Waern <david.waern@gmail.com> | 2009-06-24 22:23:23 +0000 |
commit | 448d5b29a18ee9ef88a43879bf850ff16f327cb8 (patch) | |
tree | b0d0583a9a6944480f8e95f4ddeed6d1aceefa59 /src/Main.hs | |
parent | d02190da47dfd3712ce72cac6b36604f544dfb2b (diff) |
Add Haddock module headers
Add a proper Haddock module header to each module, with a more finegrained
copyright. If you feel mis-accreditted, please correct any copyright notice!
The maintainer field is set to haddock@projects.haskell.org.
Next step is to add a brief description to each module.
Diffstat (limited to 'src/Main.hs')
-rw-r--r-- | src/Main.hs | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/src/Main.hs b/src/Main.hs index 6d85378a..0179115f 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -1,14 +1,20 @@ {-# OPTIONS_GHC -Wwarn #-} {-# LANGUAGE ForeignFunctionInterface, PatternSignatures #-} - --- --- Haddock - A Haskell Documentation Tool +----------------------------------------------------------------------------- +-- | +-- Module : Main +-- Copyright : (c) Simon Marlow 2003-2006, +-- David Waern 2006-2009 +-- License : BSD-like -- --- (c) Simon Marlow 2003 +-- Maintainer : haddock@projects.haskell.org +-- Stability : experimental +-- Portability : portable -- --- Ported to use the GHC API by David Waern during "Summer of Code" 2006 +-- Haddock - A Haskell Documentation Tool -- - +-- Program entry point and top-level code. +----------------------------------------------------------------------------- module Main (main) where |