Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Docs improvements.
Browse files Browse the repository at this point in the history
  • Loading branch information
ma2ciek committed Jun 13, 2018
1 parent 8b4b632 commit d92e4b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/model/document.js
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ export default class Document {
* console.log( 'The data has changed!' );
* } );
*
* If you would like to listen to all changes, then check the
* If you would like to listen to all document's changes, then look at the
* {@link module:engine/model/document~Document#event:change change} event.
*
* @event change:data
Expand Down
4 changes: 2 additions & 2 deletions tests/model/document.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ describe( 'Document', () => {
baseVersion: 0,
isDocumentOperation: true,
_execute: sinon.stub().returns( data ),
_validate: () => { }
_validate: () => {}
};

delta = new Delta();
Expand Down Expand Up @@ -89,7 +89,7 @@ describe( 'Document', () => {
const operation = {
baseVersion: 1,
isDocumentOperation: true,
_execute: () => { }
_execute: () => {}
};

expect(
Expand Down

0 comments on commit d92e4b2

Please sign in to comment.