Bladeren bron

Merge pull request #310 from hoppities/master

Docs: Fixed a spelling mistake in the observable-bind-rebind error.
Maciej 6 jaren geleden
bovenliggende
commit
e912007cfc
1 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  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 );
 			}
 		} );