diff --git a/README.md b/README.md index ead16ec0..1e10566c 100644 --- a/README.md +++ b/README.md @@ -905,8 +905,8 @@ function css() { return src('app/**/*.css') .pipe(concat('style.min.css')) .on('data', function(file) { - const buferFile = new CleanCSS(options).minify(file.contents) - return file.contents = Buffer.from(buferFile.styles) + const bufferFile = new CleanCSS(options).minify(file.contents) + return file.contents = Buffer.from(bufferFile.styles) }) .pipe(dest('build')) }