8
0
Szymon Kupś 9 лет назад
Родитель
Сommit
59e8a397f0

+ 1 - 1
packages/ckeditor5-engine/src/model/batch.js

@@ -71,7 +71,7 @@ export default class Batch {
 	/**
 	 * Gets an iterable collection of operations.
 	 *
-	 * @returns {Iterable.<engine.model.operation.Operation}
+	 * @returns {Iterable.<engine.model.operation.Operation>}
 	 */
 	*getOperations() {
 		for ( let delta of this.deltas ) {

+ 0 - 2
packages/ckeditor5-engine/src/view/observer/mutationobserver.js

@@ -75,8 +75,6 @@ export default class MutationObserver extends Observer {
 	/**
 	 * Synchronously fires {@link engine.view.Document#mutations} event with all mutations in record queue.
 	 * At the same time empties the queue so mutations will not be fired twice.
-	 *
-	 * @returns {[type]} [description]
 	 */
 	flush() {
 		this._onMutations( this._mutationObserver.takeRecords() );

+ 1 - 1
packages/ckeditor5-engine/tests/_utils/view.js

@@ -430,7 +430,7 @@ class RangeParser {
 	 * Uses all found bracket positions to create ranges from them.
 	 *
 	 * @private
-	 * @returns {Array.<engine.view.Range}
+	 * @returns {Array.<engine.view.Range>}
 	 */
 	_createRanges() {
 		const ranges = [];