ソースを参照

Documentation: update core.treemodel documentation.

Maciej Gołaszewski 9 年 前
コミット
c71f2f05d2
1 ファイル変更4 行追加0 行削除
  1. 4 0
      packages/ckeditor5-ui/src/utils.js

+ 4 - 0
packages/ckeditor5-ui/src/utils.js

@@ -14,6 +14,9 @@ import isPlainObject from './lib/lodash/isPlainObject.js';
  * @typedef {String|Number} utils.ArrayRelation
  */
 
+/**
+ * @namespace core.utils
+ */
 const utils = {
 	/**
 	 * Creates a spy function (ala Sinon.js) that can be used to inspect call to it.
@@ -22,6 +25,7 @@ const utils = {
 	 *
 	 *  * spy.called: property set to `true` if the function has been called at least once.
 	 *
+	 * @member core.utils.spy
 	 * @returns {Function} The spy function.
 	 */
 	spy() {