Some Haddock tweaks.
This commit is contained in:
parent
95001681d4
commit
e17db34eb6
8
AST.hs
8
AST.hs
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue
Block a user