XML: polish comments
authorJulien Moutinho <julm+haskell-symantic-xml@autogeree.net>
Tue, 18 Dec 2018 12:16:28 +0000 (12:16 +0000)
committerJulien Moutinho <julm+haskell-symantic-xml@autogeree.net>
Tue, 18 Dec 2018 12:16:28 +0000 (12:16 +0000)
Language/Symantic/XML/Document.hs

index 11330c576a0e26d74d181d46ad2b115905b84bf1..1dc04430223d3ec418933458269bbb3163a42514 100644 (file)
@@ -54,12 +54,12 @@ pattern Tree0 a <- TS.Tree a (null -> True)
 
 -- ** Type 'Node'
 data Node
- =   NodeElem    QName          -- ^ Node with some 'NodeAttr' and then other 'Node's as children.
- |   NodeAttr    QName          -- ^ Node with a 'NodeText' child.
+ =   NodeElem    QName         -- ^ Node with some 'NodeAttr' and then other 'Node's as children.
+ |   NodeAttr    QName         -- ^ Node with a 'NodeText' child.
  |   NodePI      PName TL.Text -- ^ Leaf (except for @<?xml?>@ which has 'NodeAttr's.
- |   NodeText    Text           -- ^ Leaf.
- |   NodeComment TL.Text        -- ^ Leaf.
- |   NodeCDATA   TL.Text        -- ^ Leaf.
+ |   NodeText    Text          -- ^ Leaf.
+ |   NodeComment TL.Text       -- ^ Leaf.
+ |   NodeCDATA   TL.Text       -- ^ Leaf.
  deriving (Eq, Ord, Show)
 
 -- ** Type 'Text'