Skip to content

Commit

Permalink
docs: delete extra semicolon (#266)
Browse files Browse the repository at this point in the history
  • Loading branch information
Madisonkanna authored and adampash committed Feb 11, 2019
1 parent e033835 commit b3fa18b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ npm install @postlight/mercury-parser
```javascript
import Mercury from '@postlight/mercury-parser';

Mercury.parse(url).then(result => console.log(result););
Mercury.parse(url).then(result => console.log(result));

// NOTE: When used in the browser, you can omit the URL argument
// and simply run `Mercury.parse()` to parse the current page.
Expand Down

0 comments on commit b3fa18b

Please sign in to comment.