소스 검색

Other: Fix docs & imports.

Maciej Gołaszewski 7 년 전
부모
커밋
d5a31a5dc5
2개의 변경된 파일7개의 추가작업 그리고 7개의 파일을 삭제
  1. 5 5
      packages/ckeditor5-table/src/commands/removerowcommand.js
  2. 2 2
      packages/ckeditor5-table/src/commands/splitcellcommand.js

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