Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
filipsobol committed Dec 11, 2024
1 parent 97250c3 commit 4883755
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/ckeditor5-engine/tests/model/treewalker.js
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@ describe( 'TreeWalker', () => {
expect( walker.position.offset ).to.equal( 3 );
} );

it( 'cannot move position after the #_boundaryStartParent', () => {
it( 'cannot move position after the #_boundaryEndParent', () => {
const range = new Range(
new Position( paragraph, [ 0 ] ),
new Position( paragraph, [ 2 ] )
Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-engine/tests/view/treewalker.js
Original file line number Diff line number Diff line change
Expand Up @@ -1257,7 +1257,7 @@ describe( 'TreeWalker', () => {
expect( walker.position.offset ).to.equal( 0 );
} );

it( 'cannot move position after the #_boundaryStartParent', () => {
it( 'cannot move position after the #_boundaryEndParent', () => {
const range = new Range(
new Position( paragraph, 0 ),
new Position( paragraph, 2 )
Expand Down

0 comments on commit 4883755

Please sign in to comment.