8
0
فهرست منبع

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

Daniel Hopkins 6 سال پیش
والد
کامیت
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 => {
 		bindProperties.forEach( propertyName => {
 			if ( boundProperties.has( 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
 				 * @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 );
 			}
 			}
 		} );
 		} );