Skip to content

Commit

Permalink
fix misspelled property name
Browse files Browse the repository at this point in the history
  • Loading branch information
vsemozhetbyt authored Jan 10, 2017
1 parent 1f1cd46 commit aec7b4c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1296,7 +1296,7 @@ class DOMTraverser {
const $ = new DOMTraverser({
rootNode: document.getElementsByTagName('body'),
options: {
animationModul() {}
animationModule() {}
}
});
```
Expand Down Expand Up @@ -1702,8 +1702,7 @@ Promises are a built-in global type. Use them!
require('request').get('https://en.wikipedia.org/wiki/Robert_Cecil_Martin', (requestErr, response) => {
if (requestErr) {
console.error(requestErr);
}
else {
} else {
require('fs').writeFile('article.html', response.body, (writeErr) => {
if (writeErr) {
console.error(writeErr);
Expand Down

0 comments on commit aec7b4c

Please sign in to comment.