Some Haddock tweaks.

This commit is contained in:
Adam Sampson 2007-08-22 01:43:52 +00:00
parent 95001681d4
commit e17db34eb6

8
AST.hs
View File

@ -74,8 +74,12 @@ data NameDef = NameDef {
}
deriving (Show, Eq, Typeable, Data)
-- | The direction of a channel -- input (reading-end), output (writing-end) or unknown (either)
data Direction = DirInput | DirOutput | DirUnknown
-- | The direction of a channel.
data Direction =
DirInput -- ^ The input end.
| DirOutput -- ^ The output end.
| DirUnknown -- ^ Either direction; either this is a whole channel,
-- or its direction is to be figured out later.
deriving (Show, Eq, Typeable, Data)
-- | Attributes of the type of a channel.