Ver Fonte

Docs: Fixed broken links.

Aleksander Nowodzinski há 6 anos atrás
pai
commit
68852a2764

+ 4 - 4
packages/ckeditor5-table/src/tablecellproperties/tablecellpropertiesui.js

@@ -67,7 +67,7 @@ export default class TableCellPropertiesUI extends Plugin {
 		/**
 		 * The cell properties form view displayed inside the balloon.
 		 *
-		 * @member {module:table/ui/tablecellpropertiesview~TableCellPropertiesView}
+		 * @member {module:table/tablecellproperties/ui/tablecellpropertiesview~TableCellPropertiesView}
 		 */
 		this.view = this._createPropertiesView();
 
@@ -107,11 +107,11 @@ export default class TableCellPropertiesUI extends Plugin {
 	}
 
 	/**
-	 * Creates the {@link module:table/ui/tablecellpropertiesview~TableCellPropertiesView} instance.
+	 * Creates the {@link module:table/tablecellproperties/ui/tablecellpropertiesview~TableCellPropertiesView} instance.
 	 *
 	 * @private
-	 * @returns {module:table/ui/tablecellpropertiesview~TableCellPropertiesView} The cell properties form
-	 * view instance.
+	 * @returns {module:table/tablecellproperties/ui/tablecellpropertiesview~TableCellPropertiesView} The cell
+	 * properties form view instance.
 	 */
 	_createPropertiesView() {
 		const editor = this.editor;

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

@@ -11,7 +11,7 @@ import View from '@ckeditor/ckeditor5-ui/src/view';
 
 /**
  * The class representing a single row in the complex form,
- * used by {@link module:table/ui/tablecellpropertiesview~TableCellPropertiesView}.
+ * used by {@link module:table/tablecellproperties/ui/tablecellpropertiesview~TableCellPropertiesView}.
  *
  * **Note**: For now this class is private. When more use cases arrive (beyond ckeditor5-table),
  * it will become a component in ckeditor5-ui.