소스 검색

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); }