浏览代码

Fix ESLint warning in tools/webpack.config.js

Konstantin Tarkus 9 年之前
父节点
当前提交
9b19bcaaec
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tools/webpack.config.js

+ 1 - 1
tools/webpack.config.js

@@ -119,7 +119,7 @@ const config = {
       // Transfer @import rule by inlining content, e.g. @import 'normalize.css'
       // https://github.com/postcss/postcss-import
       require('postcss-import')({ addDependencyTo: bundler }),
-      // W3C custom properties for variables, e.g. :root { --color: red; } div { background: var(--color); }
+      // W3C variables, e.g. :root { --color: red; } div { background: var(--color); }
       // https://github.com/postcss/postcss-custom-properties
       require('postcss-custom-properties')(),
       // W3C calc() function, e.g. div { height: calc(100px - 2em); }