浏览代码

API docs fixes.

Maciek 9 年之前
父节点
当前提交
06553a6fbe
共有 2 个文件被更改,包括 5 次插入5 次删除
  1. 3 3
      packages/ckeditor5-ui/src/componentfactory.js
  2. 2 2
      packages/ckeditor5-ui/src/view.js

+ 3 - 3
packages/ckeditor5-ui/src/componentfactory.js

@@ -15,21 +15,21 @@ import CKEditorError from '../utils/ckeditorerror.js';
  * Factories of specific UI components can be registered under their unique names. Registered
  * components can be later instantiated by providing the name of the component.
  *
- * The main use case for the component factory is the {@link module:core/editorUI/EditorUI#componentFactory} factory.
+ * The main use case for the component factory is the {@link module:core/editor/editorui~EditorUI#componentFactory} factory.
  */
 export default class ComponentFactory {
 	/**ś
 	 * Creates ComponentFactory instance.
 	 *
 	 * @constructor
-	 * @param {module:core/editor~Editor} editor The editor instance.
+	 * @param {module:core/editor/editor~Editor} editor The editor instance.
 	 */
 	constructor( editor ) {
 		/**
 		 * The editor instance.
 		 *
 		 * @readonly
-		 * @member {module:core/editor~Editor}
+		 * @member {module:core/editor/editor~Editor}
 		 */
 		this.editor = editor;
 

+ 2 - 2
packages/ckeditor5-ui/src/view.js

@@ -55,11 +55,11 @@ export default class View {
 	/**
 	 * Creates an instance of the {@link module:ui/view~View} class.
 	 *
-	 * @param {module:utils/locale~Locale} [locale] The {@link module:core/editor~Editor editor's locale} instance.
+	 * @param {module:utils/locale~Locale} [locale] The {@link module:core/editor/editor~Editor editor's locale} instance.
 	 */
 	constructor( locale ) {
 		/**
-		 * A set of tools to localize the user interface. See {@link module:core/editor~Editor}.
+		 * A set of tools to localize the user interface. See {@link module:core/editor/editor~Editor}.
 		 *
 		 * @readonly
 		 * @member {module:utils/locale~Locale}