Skip to content

Commit

Permalink
tools: fix tools/doc/addon-verify.js regression
Browse files Browse the repository at this point in the history
Introduced in commit 3f69ea5 ("tools: update marked dependency"), it
stopped the embedded addons in the documentation from getting built.

PR-URL: #6652
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
  • Loading branch information
addaleax authored and Myles Borins committed Jul 14, 2016
1 parent ea20796 commit ed193ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/doc/addon-verify.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const verifyDir = path.resolve(rootDir, 'test', 'addons');

const contents = fs.readFileSync(doc).toString();

const tokens = marked.lexer(contents, {});
const tokens = marked.lexer(contents);
let files = null;
let id = 0;

Expand Down

0 comments on commit ed193ad

Please sign in to comment.