From ebe2646a2eb320ae38442704ff74e6ca99090b3e Mon Sep 17 00:00:00 2001 From: Sam Richard Date: Thu, 26 Mar 2015 19:50:02 -0400 Subject: [PATCH] More accurate sourcemap documentation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 44dba3f..966ea35 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ gulp.src('./scss/*.scss') .pipe(gulp.dest('./css')); ``` -By default, [gulp-sourcemaps](https://github.com/floridoo/gulp-sourcemaps) writes the source maps inline in the compiled CSS files. To write them to a separate file, specify a relative file path in the `sourcemaps.write()` function. +By default, [gulp-sourcemaps](https://github.com/floridoo/gulp-sourcemaps) writes the source maps inline in the compiled CSS files. To write them to a separate file, specify a path relative to the `gulp.dest()` destination in the `sourcemaps.write()` function. ```javascript var sourcemaps = require('gulp-sourcemaps');