소스 검색

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() {