8
0
Просмотр исходного кода

fixed a spelling mistake in the error that's thrown for observable-bind-rebind

Daniel Hopkins 6 лет назад
Родитель
Сommit
51c22e94d3
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      packages/ckeditor5-utils/src/observablemixin.js

+ 2 - 2
packages/ckeditor5-utils/src/observablemixin.js

@@ -126,11 +126,11 @@ const ObservableMixin = {
 		bindProperties.forEach( propertyName => {
 			if ( boundProperties.has( propertyName ) ) {
 				/**
-				 * Cannot bind the same property more that once.
+				 * Cannot bind the same property more than once.
 				 *
 				 * @error observable-bind-rebind
 				 */
-				throw new CKEditorError( 'observable-bind-rebind: Cannot bind the same property more that once.', this );
+				throw new CKEditorError( 'observable-bind-rebind: Cannot bind the same property more than once.', this );
 			}
 		} );