From f8b55a2617243a328777fe7c533a7b35ca0dddfc Mon Sep 17 00:00:00 2001 From: coderaiser Date: Fri, 8 Dec 2023 10:47:13 +0200 Subject: [PATCH] docs: README: typo: bufer -> buffer (#1265) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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')) }