浏览代码

Docs: Attribute fixes.

Szymon Cofalik 10 年之前
父节点
当前提交
f4013b787f
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      packages/ckeditor5-engine/src/treemodel/attribute.js

+ 2 - 2
packages/ckeditor5-engine/src/treemodel/attribute.js

@@ -17,7 +17,7 @@ export default class Attribute {
 	 * Creates a new instance of the `Attribute` class. Once attribute is created it is immutable.
 	 *
 	 * @param {String} key Attribute key.
-	 * @param {Mixed} value Attribute value.
+	 * @param {*} value Attribute value.
 	 * @constructor
 	 */
 	constructor( key, value ) {
@@ -33,7 +33,7 @@ export default class Attribute {
 		 * Attribute value. Note that value may be any type, including objects.
 		 *
 		 * @readonly
-		 * @property {Mixed} value
+		 * @property {*} value
 		 */
 		this.value = value;