浏览代码

Minor docs refactoring.

Oskar Wrobel 9 年之前
父节点
当前提交
feafe11679
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      packages/ckeditor5-link/src/ui/linkballoonpanel.js

+ 4 - 4
packages/ckeditor5-link/src/ui/linkballoonpanel.js

@@ -44,10 +44,10 @@ export default class LinkBalloonPanel extends BalloonPanel {
 	}
 
 	/**
-	 * Initializes {@link link.ui.Form} component with input and buttons.
+	 * Initializes {@link link.ui.LinkForm} component with input and buttons.
 	 *
 	 * @private
-	 * @returns {link.ui.Form} Form component.
+	 * @returns {link.ui.LinkForm} Form component.
 	 */
 	_createForm() {
 		const formModel = new Model();
@@ -55,9 +55,9 @@ export default class LinkBalloonPanel extends BalloonPanel {
 		formModel.on( 'execute', () => this.model.fire( 'executeLink' ) );
 
 		/**
-		 * An instance of {@link link.ui.Form} component.
+		 * An instance of {@link link.ui.LinkForm} component.
 		 *
-		 * @member {link.ui.Form} link.ui.LinkBalloonPanel#form
+		 * @member {link.ui.LinkForm} link.ui.LinkBalloonPanel#form
 		 */
 		this.form = new LinkForm( formModel, new LinkFormView( this.locale ) );