Ver código fonte

Other: Fix docs & imports.

Maciej Gołaszewski 7 anos atrás
pai
commit
d5a31a5dc5

+ 5 - 5
packages/ckeditor5-table/src/commands/removerowcommand.js

@@ -4,20 +4,20 @@
  */
 
 /**
- * @module table/commands/splitcell
+ * @module table/commands/removerow
  */
 
 import Command from '@ckeditor/ckeditor5-core/src/command';
 import TableWalker from '../tablewalker';
-import Position from '../../../ckeditor5-engine/src/model/position';
-import Range from '../../../ckeditor5-engine/src/model/range';
+import Position from '@ckeditor/ckeditor5-engine/src/model/position';
+import Range from '@ckeditor/ckeditor5-engine/src/model/range';
 
 /**
- * The split cell command.
+ * The remove row command.
  *
  * @extends module:core/command~Command
  */
-export default class InsertTableCommand extends Command {
+export default class RemoveRowCommand extends Command {
 	/**
 	 * @inheritDoc
 	 */

+ 2 - 2
packages/ckeditor5-table/src/commands/splitcellcommand.js

@@ -4,7 +4,7 @@
  */
 
 /**
- * @module table/commands/splitcell
+ * @module table/commands/splitcellcommand
  */
 
 import Command from '@ckeditor/ckeditor5-core/src/command';
@@ -16,7 +16,7 @@ import TableWalker from '../tablewalker';
  *
  * @extends module:core/command~Command
  */
-export default class InsertTableCommand extends Command {
+export default class SplitCellCommand extends Command {
 	/**
 	 * @inheritDoc
 	 */