Skip to content

Commit ca6a21c

Browse files
committed
Merge pull request dlmanning#76 from JosephHier/master
Revise minor errors in README.md.
2 parents 5395cae + 60f15b9 commit ca6a21c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Something like this:
1717

1818
```javascript
1919
var gulp = require('gulp');
20-
var sass = require('gulp-sass')
20+
var sass = require('gulp-sass');
2121

2222
gulp.task('sass', function () {
2323
gulp.src('./scss/*.scss')
@@ -36,7 +36,7 @@ If you pass `errLogToConsole: true` into the options hash, sass errors will be l
3636

3737
#### `onSuccess: callback`
3838

39-
Pass in your own callback to be called upon successful compilaton by node-sass. The callback has the form `callback(css)`, and is passed the compiled css as a string. Note: This *does not* prevent gulp-sass's default behavior of writing the output css file.
39+
Pass in your own callback to be called upon successful compilation by node-sass. The callback has the form `callback(css)`, and is passed the compiled css as a string. Note: This *does not* prevent gulp-sass's default behavior of writing the output css file.
4040

4141
#### `onError: callback`
4242

0 commit comments

Comments
 (0)