Selaa lähdekoodia

Documentation: fix some problems with used tags. Add full core.Creator docs.

Maciej Gołaszewski 9 vuotta sitten
vanhempi
commit
cef21e7485

+ 1 - 1
packages/ckeditor5-utils/src/collection.js

@@ -28,7 +28,7 @@ export default class Collection {
 	 * Creates a new Collection instance.
 	 *
 	 * @constructor
-	 * @param {Iterale} [items] Items to be added to the collection.
+	 * @param {Iterable} [items] Items to be added to the collection.
 	 * @param {Object} options The options object.
 	 * @param {String} [options.idProperty='id'] The name of the property which is considered to identify an item.
 	 */

+ 0 - 1
packages/ckeditor5-utils/src/config.js

@@ -181,7 +181,6 @@ export default class Config {
 			/**
 			 * TODO
 			 *
-			 * @property
 			 * @type {Config}
 			 */
 			this.definition = new Config();

+ 1 - 1
packages/ckeditor5-utils/src/observablemixin.js

@@ -189,7 +189,7 @@ const ObservableMixin = {
 	 *		A.unbind( 'a' );
 	 *		A.unbind();
 	 *
-	 * @param {String...} [bindAttrs] Observable attributes to be unbound. All the bindings will
+	 * @param {String} [bindAttrs] Observable attributes to be unbound. All the bindings will
 	 * be released if no attributes provided.
 	 */
 	unbind( ...unbindAttrs ) {