Minor comment change.

This commit is contained in:
John MacFarlane 2010-07-06 21:22:19 -07:00
parent 7d687684aa
commit 73b4cc0897
2 changed files with 1 additions and 2 deletions

View file

@ -851,7 +851,6 @@ gridTable :: Bool -- ^ Headerless table
-> GenParser Char ParserState Block
gridTable = gridTableWith block tableCaption
-- TODO - add grid tables here...add tests for markdown grid tables...document markdown grid tables.
table :: GenParser Char ParserState Block
table = multilineTable False <|> simpleTable True <|>
simpleTable False <|> multilineTable True <|>

View file

@ -655,7 +655,7 @@ simpleTableHeader headless = try $ do
map removeLeadingTrailingSpace rawHeads
return (heads, aligns, indices)
-- Parse a simple table with '---' header and one line per row.
-- Parse a simple table.
simpleTable :: Bool -- ^ Headerless table
-> GenParser Char ParserState Block
simpleTable headless = do