Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickkunka committed May 7, 2018
1 parent b23f6c4 commit b7dd821
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ import easydropdown from 'easydropdown';
var easydropdown = require('easydropdown');

// AMD/RequireJS
define(['easydropdown/bundles/easydropdown.js'] , function (easydropdown) {
define(['easydropdown/bundles/easydropdown.js'] , function(easydropdown) {
...
});
```
Expand Down Expand Up @@ -99,7 +99,7 @@ Next, we instantiate EasyDropDown by passing a reference to the select element(s
#### Single-instance Instantiation
We can instantiate EasyDropDown by passing a reference to the `<select>` element, to the `easydropdown()` factory function:
We can create an instance of EasyDropDown by passing a reference to a `<select>` element to the `easydropdown()` factory function:
```js
const selectElement = document.querySelector('#my-select');
Expand Down

0 comments on commit b7dd821

Please sign in to comment.