Add 2 missing trailing semicolons.

This commit is contained in:
David Anson 2024-03-20 20:24:55 -07:00
parent ab0ea70b7f
commit 4c7cc9c326
3 changed files with 4 additions and 4 deletions

View file

@ -27,7 +27,7 @@ module.exports = {
const openingFence = tokenIfType(fencedCode.children[0], "codeFencedFence");
if (openingFence) {
const { children, startLine, text } = openingFence;
const info = getTokenTextByType(children, "codeFencedFenceInfo")
const info = getTokenTextByType(children, "codeFencedFenceInfo");
if (!info) {
addErrorContext(onError, startLine, text);
} else if ((allowed.length > 0) && !allowed.includes(info)) {