[project @ 2002-04-24 16:31:37 by simonmar]
[ghc-base.git] / Control / Parallel / Strategies.hs
index cad9aa3..d011eca 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Control.Parallel.Strategies
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- $Id: Strategies.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+-- $Id: Strategies.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $
 --
 -- Parallel strategy combinators
 --
@@ -16,7 +16,7 @@
 
 {-
 Time-stamp: <Wed Mar 21 2001 00:45:34 Stardate: [-30]6360.15 hwloidl>
-$Id: Strategies.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+$Id: Strategies.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $
 
 This module defines parallel strategy combinators
 
@@ -25,8 +25,8 @@ This module defines parallel strategy combinators
        Based on Version VII (1/5/96) `Strategies96' of type a -> ()
 
 Author:    $Author: simonmar $
-Date:      $Date: 2001/06/28 14:15:02 $
-Revision:  $Revision: 1.1 $
+Date:      $Date: 2002/04/24 16:31:39 $
+Revision:  $Revision: 1.2 $
 Source:    $Source: /srv/cvs/cvs.haskell.org/fptools/libraries/base/Control/Parallel/Strategies.hs,v $
 State:     $State: Exp $
 
@@ -50,6 +50,10 @@ The history of the Strategies module:
 
 Changelog:
 $Log: Strategies.hs,v $
+Revision 1.2  2002/04/24 16:31:39  simonmar
+Add the single character '|' to the header comment of each module so
+that Haddock will parse it as the module documentation.
+
 Revision 1.1  2001/06/28 14:15:02  simonmar
 First cut of the Haskell Core Libraries
 =======================================
@@ -277,8 +281,8 @@ declaration of @par@ and @seq@ despite renaming the imported versions.
 > infixl 6 $||, $|            -- strategic function application (seq and par)
 > infixl 9 .|, .||, -|, -||   -- strategic (inverse) function composition
 
-> strategy_version = "$Revision: 1.1 $"
-> strategy_id = "$Id: Strategies.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $"
+> strategy_version = "$Revision: 1.2 $"
+> strategy_id = "$Id: Strategies.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $"
 
 ------------------------------------------------------------------------------
                        Strategy Type, Application and Semantics