Selaa lähdekoodia

Docs: Fixed typo in the documentation of the `Observable#bind` method.

Co-Authored-By: oleq <a.nowodzinski@cksource.com>
Piotrek Koszuliński 7 vuotta sitten
vanhempi
commit
edfc7c348a
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      packages/ckeditor5-utils/src/observablemixin.js

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

@@ -767,7 +767,7 @@ function attachBindToListeners( observable, toBindings ) {
  *
  *		button.bind( 'isEnabled' ).to( command, 'isWorking' );
  *
- * It is possible to bind more that one property at a time to shorten the code:
+ * It is possible to bind more than one property at a time to shorten the code:
  *
  *		button.bind( 'isEnabled', 'value' ).to( command );
  *