8
0
فهرست منبع

Update src/commands/mergecellscommand.js

Aleksander Nowodzinski 5 سال پیش
والد
کامیت
1173267cce
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      packages/ckeditor5-table/src/commands/mergecellscommand.js

+ 1 - 1
packages/ckeditor5-table/src/commands/mergecellscommand.js

@@ -199,7 +199,7 @@ function getBiggestRectangleArea( rows, columns ) {
 	return ( lastRow - firstRow + 1 ) * ( lastColumn - firstColumn + 1 );
 }
 
-// Checks if selection does not mix header (column or row) with other cells.
+// Checks if the selection does not mix header (column or row) with other cells.
 //
 // In the below table a valid selection is such that consist cells with the same letter.
 // So, a-a (same heading row and column) or d-d (body cells) are valid while c-d or a-b are not.