From 2d91eec6728faeba42c06c109131035cb6764a46 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Fri, 25 Mar 2022 16:43:54 +0200 Subject: Fix comments --- lib/rfs.js | 2 +- postcss.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/rfs.js b/lib/rfs.js index f76a835..0fbc332 100644 --- a/lib/rfs.js +++ b/lib/rfs.js @@ -72,7 +72,7 @@ module.exports = class { // invoking the callback for each. parsed.walk(node => { // Since we only want to transform rfs() values, - // we can ignore anything else. + // we can ignore everything else. if (node.type !== 'function' && node.value !== this.opts.functionName) { return; } diff --git a/postcss.js b/postcss.js index 28e9bc7..4cae5c5 100644 --- a/postcss.js +++ b/postcss.js @@ -17,7 +17,7 @@ const ENABLE_RFS_SELECTOR = '.enable-rfs'; module.exports = (opts = {}) => { const rfs = new RfsClass(opts); - // Get the options merged with defaults + // Get the merged options opts = rfs.getOptions(); const mediaQuery = rfs.renderMediaQuery(); -- cgit v1.2.3