packages feed

ACME 0.0.0.0 → 0.0.0.1

raw patch · 5 files changed

+8/−7 lines, 5 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

ACME.cabal view
@@ -2,10 +2,10 @@ -- see http://haskell.org/cabal/users-guide/
 
 name:                ACME
-version:             0.0.0.0
+version:             0.0.0.1
 synopsis:            Essential features
 -- description:         
-homepage:            alkalisoftware.net
+homepage:            http://alkalisoftware.net
 license:             BSD3
 license-file:        LICENSE
 author:              James Candy
Acme/Perhaps.hs view
@@ -1,4 +1,4 @@--- The Perhaps monad
+-- | The Perhaps monad
 module Acme.Perhaps where
 
 data Perhaps t = Definitely t | Probably t | ProbablyNot | Nope deriving (Eq, Ord, Show, Read)
Acme/Pirates.hs view
@@ -41,13 +41,13 @@ 
 captainsLog = hPutStr stderr
 
--- The crew gives the captain the black spot to inform him of a mutiny.
+-- | The crew gives the captain the black spot to inform him of a mutiny.
 theBlackSpot = throwIO
 
--- The captain tries to give orders in the first parameter. This may result in a mutiny, which is handled in the second parameter.
+-- | The captain tries to give orders in the first parameter. This may result in a mutiny, which is handled in the second parameter.
 mutiny = catch
 
--- Miscellaneous interjections
+-- | Miscellaneous interjections
 shiverMeTimbers = id
 
 yar = id
Acme/Trivial.hs view
@@ -1,3 +1,4 @@+-- | The Trivial monad.
 module Acme.Trivial where
 
 data Trivial t = Trivial deriving (Eq, Ord, Show, Read)
Acme/Unit.hs view
@@ -2,7 +2,7 @@ 
 import Control.Monad.Identity (Identity(Identity))
 
--- /Generalized unit types/
+-- | /Generalized unit types/
 
 class Unit t where
 	unit :: t