浏览代码

Docs corrections.

Krzysztof Krztoń 8 年之前
父节点
当前提交
01b6ec2c5a
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. 4 1
      packages/ckeditor5-typing/src/input.js

+ 4 - 1
packages/ckeditor5-typing/src/input.js

@@ -91,6 +91,7 @@ export default class Input extends Plugin {
 	/**
 	 * Handles DOM mutations.
 	 *
+	 * @private
 	 * @param {Array.<module:engine/view/document~MutatatedText|module:engine/view/document~MutatatedChildren>} mutations
 	 * @param {module:engine/view/selection~Selection|null} viewSelection
 	 */
@@ -123,6 +124,7 @@ class MutationHandler {
 		/**
 		 * The editing controller.
 		 *
+		 * @readonly
 		 * @member {module:engine/controller/editingcontroller~EditingController} #editing
 		 */
 		this.editing = this.editor.editing;
@@ -130,7 +132,8 @@ class MutationHandler {
 		/**
 		 * The change buffer;
 		 *
-		 * @type {module:typing/changebuffer~ChangeBuffer} #buffer
+		 * @readonly
+		 * @member {module:typing/changebuffer~ChangeBuffer} #buffer
 		 */
 		this.buffer = buffer;
 	}