浏览代码

Fix typos.

panr 5 年之前
父节点
当前提交
e5bf396a5a
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      packages/ckeditor5-link/tests/linkui.js

+ 2 - 2
packages/ckeditor5-link/tests/linkui.js

@@ -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' );
@@ -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';