Skip to content

Commit bc68d59

Browse files
committed
Gah. Stupid typo.
1 parent 0e7d0cc commit bc68d59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/markdown.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ parse_emph1(struct buf *ob, struct sd_markdown *rndr, uint8_t *data, size_t size
501501
if (data[i] == c && !_isspace(data[i - 1])) {
502502

503503
if (rndr->ext_flags & MKDEXT_NO_INTRA_EMPHASIS) {
504-
if (i + i < size && isalnum(data[i + 1]))
504+
if (i + 1 < size && isalnum(data[i + 1]))
505505
continue;
506506
}
507507

0 commit comments

Comments
 (0)