Minor comment change.

This commit is contained in:
John MacFarlane
2010-07-06 21:23:25 -07:00
parent 7d687684aa
commit 73b4cc0897
2 changed files with 1 additions and 2 deletions
-1
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 <|>
+1 -1
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