8
0
Просмотр исходного кода

Docs: Added missing comma in the Observable#bind docs.

Aleksander Nowodzinski 7 лет назад
Родитель
Сommit
52415a3cda
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      packages/ckeditor5-utils/src/observablemixin.js

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

@@ -748,7 +748,7 @@ function attachBindToListeners( observable, toBindings ) {
  * * whenever `command.isEnabled` changes, `button.isEnabled` will immediately follow.
  * * whenever `command.isEnabled` changes, `button.isEnabled` will immediately follow.
  *
  *
  * Note that `command.isEnabled` **must** be defined using the {@link #set `set()`} method for the binding
  * Note that `command.isEnabled` **must** be defined using the {@link #set `set()`} method for the binding
- * to be dynamic. `button.isEnabled` does not need to exist prior to the `bind()` call and in such case it
+ * to be dynamic. `button.isEnabled` does not need to exist prior to the `bind()` call and in such case, it
  * will be created on demand.
  * will be created on demand.
  *
  *
  * The last example corresponds to the following code:
  * The last example corresponds to the following code: