Skip to content

Commit

Permalink
Fix typo in code example
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanLovely authored Oct 23, 2017
1 parent 1eb9af1 commit e0531e5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ sassExtract.render({
})
.then(rendered => {
console.log(rendered.vars);
console.log(rendere.css.toString());
console.log(rendered.css.toString());
});
```

Expand All @@ -85,7 +85,7 @@ const rendered = sassExtract.render({
});

console.log(rendered.vars);
console.log(rendere.css.toString());
console.log(rendered.css.toString());
```

##### extract(rendered, { compileOptions, extractOptions })
Expand Down Expand Up @@ -471,4 +471,4 @@ Generate changelog using `npm install -g conventional-changelog` and `npm run ch
5. `npm run changelog`
6. Commit package.json and CHANGELOG.md files
7. Tag
8. Push
8. Push

0 comments on commit e0531e5

Please sign in to comment.