Procházet zdrojové kódy

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

Co-Authored-By: oleq <a.nowodzinski@cksource.com>
Piotrek Koszuliński před 7 roky
rodič
revize
edfc7c348a
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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 );
  *