Skip to content

Commit 6f98149

Browse files
committed
Fix "unused variable" warning.
1 parent a6427fc commit 6f98149

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Text/Pandoc/Writers/HTML.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1263,7 +1263,7 @@ tableRowToHtml :: PandocMonad m
12631263
=> WriterOptions
12641264
-> TableRow
12651265
-> StateT WriterState m Html
1266-
tableRowToHtml opts (TableRow tblpart attr rownum rowhead rowbody) = do
1266+
tableRowToHtml opts (TableRow tblpart attr _rownum rowhead rowbody) = do
12671267
let celltype = case tblpart of
12681268
Thead -> HeaderCell
12691269
_ -> BodyCell

0 commit comments

Comments
 (0)