Add type documentation

This commit is contained in:
Justin Leitgeb 2015-03-11 16:23:16 -05:00
parent 2653d984bb
commit 4d6b0b48fa

View File

@ -37,9 +37,10 @@ data ReleaseFormat = Short -- ^ Standard release path following Capistrano
| Long -- ^ Long release path including picoseconds for testing or people seriously into continuous deployment
deriving (Show)
data HapistranoState = HapistranoState { config :: Config
, timestamp :: Maybe String
} deriving Show
data HapistranoState =
HapistranoState { config :: Config -- ^ Record containing Hapistrano configuration
, timestamp :: Maybe String -- ^ Timestamp of this release
} deriving Show
type Release = String