Skip to content

Commit

Permalink
Merge pull request #2 from simonsmith/doc-update
Browse files Browse the repository at this point in the history
Fix documentation example
  • Loading branch information
necolas authored and mlnmln committed Dec 30, 2018
1 parent 4da589f commit 4e76c46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/preprocessor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ Examples:
#### Node.js

```js
var suitcss = require('suitcss');
var suitcss = require('suitcss-preprocessor');
var fs = require('fs');

var css = fs.readFileSync('index.css', 'utf8');
var converted = myth(css);
var converted = suitcss(css);

fs.writeFileSync('converted.css', converted);
```
Expand Down

0 comments on commit 4e76c46

Please sign in to comment.