Parcourir la source

Fix ESLint warning in tools/webpack.config.js

Konstantin Tarkus il y a 9 ans
Parent
commit
9b19bcaaec
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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); }