From 1e6bacd34537384680f45d2c1c22016c90aac1d1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Moritz=20Kr=C3=B6ger?= Date: Sat, 11 Mar 2017 15:04:42 +0100 Subject: [PATCH] Update README.md (#909) Fixes wrong variable name in usage demo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d69d18de..447b3ada 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ npm install clean-css var CleanCSS = require('clean-css'); var input = 'a{font-weight:bold;}'; var options = { /* options */ }; -var output = new CleanCSS(options).minify(source); +var output = new CleanCSS(options).minify(input); ``` ## Important: 4.0 breaking changes -- 2.34.1