Browse Source

Docs: More API docs polish. [skip ci]

Piotrek Koszuliński 7 years ago
parent
commit
f0f4c328a1

+ 1 - 1
packages/ckeditor5-editor-balloon/src/ballooneditor.js

@@ -169,7 +169,7 @@ export default class BalloonEditor extends Editor {
 	 * (on which the editor will be initialized) or initial data for the editor.
 	 *
 	 * If a source element is passed, then its contents will be automatically
-	 * {@link module:editor-classic/ballooneditor~BalloonEditor#setData loaded} to the editor on startup and the element
+	 * {@link module:editor-balloon/ballooneditor~BalloonEditor#setData loaded} to the editor on startup and the element
 	 * itself will be used as the editor's editable element.
 	 *
 	 * If data is provided, then `editor.element` will be created automatically and needs to be added

+ 2 - 3
packages/ckeditor5-editor-balloon/src/ballooneditoruiview.js

@@ -20,9 +20,8 @@ export default class BalloonEditorUIView extends EditorUIView {
 	 * Creates an instance of the balloon editor UI view.
 	 *
 	 * @param {module:utils/locale~Locale} locale The {@link module:core/editor/editor~Editor#locale} instance.
-	 * @param {HTMLElement} [editableElement] The editable element. If not specified, the
-	 * {@link module:ui/editableui/editableuiview~EditableUIView}
-	 * will create it. Otherwise, the existing element will be used.
+	 * @param {HTMLElement} [editableElement] The editable element. If not specified, it will be automatically created by
+	 * {@link module:ui/editableui/editableuiview~EditableUIView}. Otherwise, the given element will be used.
 	 */
 	constructor( locale, editableElement ) {
 		super( locale );