Przeglądaj źródła

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

Maciej 5 lat temu
rodzic
commit
82f7ae376f

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