Parcourir la source

Docs: Update Table & InsertTableCommand documentation.

Maciej Gołaszewski il y a 7 ans
Parent
commit
c046394558

+ 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
  */