Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewbranch committed May 5, 2020
1 parent b916773 commit bd95106
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function createPlugin() {
const nodes = [];
visit(
markdownAST,
({ type }) => type === 'code' || inlineCode && type === 'inlineCode',
({ type }) => type === 'code' || (inlineCode && type === 'inlineCode'),
node => {
nodes.push(node);
}
Expand Down

0 comments on commit bd95106

Please sign in to comment.