From 60f15b92165c041be2d2110f9a3aa75f466f6b61 Mon Sep 17 00:00:00 2001 From: Joseph Hier Date: Tue, 29 Jul 2014 21:47:00 -0700 Subject: [PATCH] Revise minor errors in README.md. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8a73f6f..9848e66 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Something like this: ```javascript var gulp = require('gulp'); -var sass = require('gulp-sass') +var sass = require('gulp-sass'); gulp.task('sass', function () { gulp.src('./scss/*.scss') @@ -36,7 +36,7 @@ If you pass `errLogToConsole: true` into the options hash, sass errors will be l #### `onSuccess: callback` -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. +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. #### `onError: callback`