@@ -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 ) {
@@ -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() );
@@ -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 = [];