浏览代码

Code style: Changed {number} to {Number}.

Piotr Jasiun 10 年之前
父节点
当前提交
44d9021711
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      packages/ckeditor5-utils/src/utils.js

+ 3 - 3
packages/ckeditor5-utils/src/utils.js

@@ -97,13 +97,13 @@ CKEDITOR.define( [ 'utils-lodash', 'lib/lodash/lodash-ckeditor' ], function( lod
 	/**
 	 * Flag for "is same as" relation between arrays.
 	 *
-	 * @type {number}
+	 * @type {Number}
 	 */
 	utils.compareArrays.SAME = 0;
 	/**
 	 * Flag for "is a prefix of" relation between arrays.
 	 *
-	 * @type {number}
+	 * @type {Number}
 	 */
 	utils.compareArrays.PREFIX = 1;
 	/**
@@ -115,7 +115,7 @@ CKEDITOR.define( [ 'utils-lodash', 'lib/lodash/lodash-ckeditor' ], function( lod
 	/**
 	 * Flag for "is different than" relation between arrays.
 	 *
-	 * @type {number}
+	 * @type {Number}
 	 */
 	utils.compareArrays.DIFFERENT = 3;