Skip to content

Commit

Permalink
docs: tweak grammar (#1227)
Browse files Browse the repository at this point in the history
  • Loading branch information
jergason authored and bradzacher committed Nov 19, 2019
1 parent 2b3b5d6 commit 4550015
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -108,7 +108,7 @@ This is not valid JavaScript code, because it contains a so-called type annotati

However, we can leverage the fact that ESLint has been designed with these use-cases in mind!

It turns out that ESLint is not just comprised of one library, instead it is comprised of a few important moving parts. One of those moving parts is **the parser**. ESLint ships with a parser built in (called [`espree`](https://github.com/eslint/espree)), and so if you only ever write standard JavaScript, you don't need to care about this implementation detail.
It turns out that ESLint is not just one library. Instead it is composed of a few important moving parts. One of those moving parts is **the parser**. ESLint ships with a parser built in (called [`espree`](https://github.com/eslint/espree)), and so if you only ever write standard JavaScript, you don't need to care about this implementation detail.

The great thing is, though, if we want to support non-standard JavaScript syntax, all we need to do is provide ESLint with an alternative parser to use - that is a first-class use-case offered by ESLint.

Expand Down

0 comments on commit 4550015

Please sign in to comment.