Skip to content

Commit

Permalink
Fix typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
panr committed Jun 10, 2020
1 parent e9b938e commit e5bf396
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ckeditor5-link/tests/linkui.js
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,7 @@ describe( 'LinkUI', () => {
} );
} );

it( 'should not add a protocol when given provided wihitn the value even when `config.link.defaultProtocol` configured', () => {
it( 'should not add a protocol when given provided within the value even when `config.link.defaultProtocol` configured', () => {
return createEditorWithDefaultProtocol( 'http://' ).then( ( { editor, formView } ) => {
formView.urlInputView.fieldView.value = 'http://example.com';
formView.fire( 'submit' );
Expand Down Expand Up @@ -1036,7 +1036,7 @@ describe( 'LinkUI', () => {
} );
} );

it( 'should not add an email protocol when given provided wihitn the value' +
it( 'should not add an email protocol when given provided within the value' +
'even when `config.link.defaultProtocol` configured', () => {
return createEditorWithDefaultProtocol( 'mailto:' ).then( ( { editor, formView } ) => {
formView.urlInputView.fieldView.value = 'mailto:test@example.com';
Expand Down

0 comments on commit e5bf396

Please sign in to comment.