浏览代码

Fixed a comment.

Kamil Piechaczek 6 年之前
父节点
当前提交
b217e325a4
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      scripts/docs/build-content-styles.js

+ 1 - 1
scripts/docs/build-content-styles.js

@@ -99,7 +99,7 @@ runWebpack( webpackConfig )
 
 				// ...find its value and check whether it requires another variable.
 				while ( ( match = VARIABLE_USAGE_REGEXP.exec( value ) ) ) {
-					// If so, mark the entire `while()` block should be run once again.
+					// If so, mark the entire `while()` block as it should be checked once again.
 					// Also, add the new variable to used variables collection.
 					if ( !usedVariables.has( match[ 1 ] ) ) {
 						clearRun = false;