瀏覽代碼

Docs: Update the docs of a TableWalker.

Maciej Gołaszewski 7 年之前
父節點
當前提交
ea1fcdca9d
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      packages/ckeditor5-table/src/tablewalker.js

+ 6 - 0
packages/ckeditor5-table/src/tablewalker.js

@@ -199,6 +199,12 @@ export default class TableWalker {
 		};
 	}
 
+	/**
+	 * Updates the cell spans of a previous cell.
+	 *
+	 * @returns {Number}
+	 * @private
+	 */
 	_updateSpans() {
 		const colspan = this._previousCell.getAttribute( 'colspan' ) || 1;
 		const rowspan = this._previousCell.getAttribute( 'rowspan' ) || 1;