Przeglądaj źródła

Merge branch 'master' into i/5595

Maciej Bukowski 6 lat temu
rodzic
commit
319f554da2

+ 1 - 1
packages/ckeditor5-utils/.github/PULL_REQUEST_TEMPLATE.md

@@ -1,6 +1,6 @@
 ### Suggested merge commit message ([convention](https://github.com/ckeditor/ckeditor5-design/wiki/Git-commit-message-convention))
 
-Type: Message. Closes #000.
+Type: Message. Closes ckeditor/ckeditor5#000.
 
 ---
 

+ 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 );
 			}
 		} );