Skip to content

Commit

Permalink
docs: README: typo: bufer -> buffer (#1265)
Browse files Browse the repository at this point in the history
  • Loading branch information
coderaiser committed Dec 8, 2023
1 parent 625cde5 commit f8b55a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -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'))
}
Expand Down

0 comments on commit f8b55a2

Please sign in to comment.