浏览代码

Update packages/ckeditor5-table/src/converters/table-cell-refresh-post-fixer.js

Maciej 5 年之前
父节点
当前提交
82f7ae376f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/ckeditor5-table/src/converters/table-cell-refresh-post-fixer.js

+ 1 - 1
packages/ckeditor5-table/src/converters/table-cell-refresh-post-fixer.js

@@ -96,6 +96,6 @@ function checkRefresh( tableCell, type, insertCount ) {
 	// - another element is added to a single paragraph (childCount becomes >= 2)
 	// - another element is removed and a single paragraph is left (childCount == 1)
 	//
-	// Change is not needed if there was multiple blocks before change.
+	// Change is not needed if there were multiple blocks before change.
 	return tableCell.childCount <= ( type == 'insert' ? insertCount + 1 : 1 );
 }