Skip to content

Commit 3a4120b

Browse files
committed
Suppress unused variable warning of "text"
1 parent 409c299 commit 3a4120b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/rdoc/markdown.kpeg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1201,7 +1201,7 @@ Table = &{ github? }
12011201
TableRow:header TableLine:line TableRow+:body
12021202
{ table = RDoc::Markup::Table.new(header, line, body) }
12031203

1204-
TableRow = < TableItem+:row > "|" @Newline
1204+
TableRow = TableItem+:row "|" @Newline
12051205
{ row }
12061206
TableItem = "|" < (!"|" !@Newline .)+ >
12071207
{ text.strip }

0 commit comments

Comments
 (0)