Skip to content

Commit

Permalink
Merge pull request #1424 from xzyfer/feat/importer-docs-return-null
Browse files Browse the repository at this point in the history
Update custom importer documentation to advocate returning `null`
  • Loading branch information
xzyfer committed Mar 23, 2016
2 parents 09bf80c + 02eee94 commit b0df78d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -104,7 +104,7 @@ Starting from v3.0.0:
return new Error('nothing to do here');
```

* importer can be an array of functions, which will be called by LibSass in the order of their occurrence in array. This helps user specify special importer for particular kind of path (filesystem, http). If an importer does not want to handle a particular path, it should return `sass.NULL`. See [functions section](#functions--v300) for more details on Sass types.
* importer can be an array of functions, which will be called by LibSass in the order of their occurrence in array. This helps user specify special importer for particular kind of path (filesystem, http). If an importer does not want to handle a particular path, it should return `null`. See [functions section](#functions--v300) for more details on Sass types.

### functions (>= v3.0.0) - _experimental_

Expand Down

0 comments on commit b0df78d

Please sign in to comment.