8
0
Piotr Jasiun 7 лет назад
Родитель
Сommit
ff6cfbe928
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      packages/ckeditor5-autosave/src/autosave.js

+ 2 - 2
packages/ckeditor5-autosave/src/autosave.js

@@ -194,7 +194,7 @@ export default class Autosave extends Plugin {
 			saveCallbacks.push( this._config.save );
 		}
 
-		// Marker's change may not produce an operation, so the document's version
+		// Change may not produce an operation, so the document's version
 		// can be the same after that change.
 		if ( version < this._lastDocumentVersion || !saveCallbacks.length ) {
 			this._decrementCounter();
@@ -252,5 +252,5 @@ export default class Autosave extends Plugin {
  * so the `Autosave` plugin will wait for that action before removing it from pending actions.
  *
  * @method #save
- * @returns {Promise.<*>|undefined}
+ * @returns {Promise.<*>}
  */