Skip to content

proper English #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ There are two ways to specify the factory.
As in the above example `./lib/xedit-lang-plugin` specifies the javascript file which exports the factory function.
Or a plain name without embedded `/` indicates `index.js` which exports the factory function.

The file `./lib/xedit-lang-plugin.js` will exports a factory function:
The file `./lib/xedit-lang-plugin.js` exports a factory function:

```javascript
...
Expand Down Expand Up @@ -120,7 +120,7 @@ The above example specifies a javascript module which is interpreted the same wa
except the module exports a dictionary instead of a function,
and use `object` to specify the key in the dictionary to retrieve the factory function.

In this case, the file `./lib/xedit-lang-multi-plugin.js` will exports an dictionary:
In this case, the file `./lib/xedit-lang-multi-plugin.js` exports an dictionary:

```javascript
...
Expand Down