浏览代码

Docs: Update Table & InsertTableCommand documentation.

Maciej Gołaszewski 7 年之前
父节点
当前提交
c046394558
共有 2 个文件被更改,包括 3 次插入4 次删除
  1. 2 3
      packages/ckeditor5-table/src/inserttablecommand.js
  2. 1 1
      packages/ckeditor5-table/src/table.js

+ 2 - 3
packages/ckeditor5-table/src/inserttablecommand.js

@@ -31,10 +31,9 @@ export default class InsertTableCommand extends Command {
 	/**
 	 * Executes the command.
 	 *
-	 * @protected
 	 * @param {Object} [options] Options for the executed command.
-	 * @param {String} [options.rows=2] Number of rows to create in inserted table.
-	 * @param {String} [options.columns=2] Number of columns to create in inserted table.
+	 * @param {Number} [options.rows=2] Number of rows to create in inserted table.
+	 * @param {Number} [options.columns=2] Number of columns to create in inserted table.
 	 *
 	 * @fires execute
 	 */

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

@@ -13,7 +13,7 @@ import TablesEditing from './tableediting';
 import TablesUI from './tableui';
 
 /**
- * The highlight plugin.
+ * The table plugin.
  *
  * @extends module:core/plugin~Plugin
  */