From a2aff92d900964fa029a2c0b9c018693ccc65789 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaesung=20Yang=28=EC=96=91=EC=9E=AC=EC=84=B1=29?= <45984260+wotjd5101@users.noreply.github.com> Date: Mon, 26 Feb 2024 13:30:54 -0500 Subject: [PATCH] Update 04--writing-the-gulpfile.md Update a word from compressed to uncomrpessed --- 04--writing-the-gulpfile.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04--writing-the-gulpfile.md b/04--writing-the-gulpfile.md index fca464c..0cf4a33 100644 --- a/04--writing-the-gulpfile.md +++ b/04--writing-the-gulpfile.md @@ -69,7 +69,7 @@ Now, back to the code on lines 4–8. We establish a function, which we’ll also refer to as a task, called `compressHTML`, which will do the following: 1. Source all HTML files in the `uncompressed-html` folder. 2. Pipe, or send, the outputof all the HTML files to our `htmlCompressor` function, which, in turn, receives an object of options (a common Gulp feature) that collapses whitespace. -3. Pipe the compressed HTML files, which are copies of the original files in the `uncompressed-html` folder, to the final destination: the `compressed-html` folder. If the folder doesn’t exist, the `dest` function will create it; the compressed files retain the names of the original files copied from the `compressed-html` folder. +3. Pipe the compressed HTML files, which are copies of the original files in the `uncompressed-html` folder, to the final destination: the `compressed-html` folder. If the folder doesn’t exist, the `dest` function will create it; the compressed files retain the names of the original files copied from the `uncompressed-html` folder. ## Last Line ```javascript