Skip to content

Commit

Permalink
fix paren error from #3755
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterBright committed Aug 19, 2014
1 parent a07ff94 commit 9894a8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc.c
Expand Up @@ -1423,7 +1423,7 @@ void DocComment::parseSections(const utf8_t *comment)
p++;
}
// BUG: handle UTF PS and LS too
if (!*p || *p == '\r' || *p == '\n' && numdash >= 3)
if ((!*p || *p == '\r' || *p == '\n') && numdash >= 3)
inCode ^= 1;
pend = p;
}
Expand Down

0 comments on commit 9894a8f

Please sign in to comment.