Skip to content

Commit a3515c2

Browse files
committed
Remove unneeded check
1 parent bca70ec commit a3515c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/construct/gfm_table.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -972,7 +972,7 @@ fn flush_cell(
972972
content: Content::Text,
973973
});
974974

975-
if !in_delimiter_row && range.3 > range.2 + 1 {
975+
if range.3 > range.2 + 1 {
976976
let a = range.2 + 1;
977977
let b = range.3 - range.2 - 1;
978978
tokenizer.map.add(a, b, vec![]);

0 commit comments

Comments
 (0)