Remove old comment.

This commit is contained in:
John MacFarlane 2018-10-27 11:22:21 -07:00
parent 9678538f45
commit 0a29da5042

View file

@ -104,12 +104,11 @@ data CellFormat =
type TableRow = ([CellFormat], [RoffTokens])
-- TODO parse tables (see man tbl)
data RoffToken = MLine [LinePart]
| MEmptyLine
| MMacro MacroKind [Arg] SourcePos
| MTable [TableOption] [TableRow] SourcePos
deriving Show
| MEmptyLine
| MMacro MacroKind [Arg] SourcePos
| MTable [TableOption] [TableRow] SourcePos
deriving Show
newtype RoffTokens = RoffTokens { unRoffTokens :: Seq.Seq RoffToken }
deriving (Show, Semigroup, Monoid)