Przeglądaj źródła

Docs: engine.model.Batch fix.

Szymon Cofalik 9 lat temu
rodzic
commit
5a8361356c
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      packages/ckeditor5-engine/src/model/batch.js

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

@@ -74,7 +74,7 @@ export default class Batch {
 	 * If there are no deltas in the batch, returns null.
 	 *
 	 * @readonly
-	 * @returns {Number|null}
+	 * @type {Number|null}
 	 */
 	get baseVersion() {
 		return this.deltas.length > 0 ? this.deltas[ 0 ].baseVersion : null;