8
0
Эх сурвалжийг харах

Merge pull request #1289 from ckeditor/t/ckeditor5-utils/41

Docs: Cross-linked from the "architecture overview" guide to the "deep dive into observables" guide (see ckeditor/ckeditor5-utils#41).
Piotrek Koszuliński 7 жил өмнө
parent
commit
fc12701b5c

+ 5 - 1
docs/framework/guides/architecture/core-editor-architecture.md

@@ -195,6 +195,10 @@ class Command {
 mix( Command, ObservableMixin );
 ```
 
+<info-box>
+	Check out the {@link framework/guides/deep-dive/observables deep dive into observables} guide to learn more about the advanced usage of observables with some additional examples.
+</info-box>
+
 Besides decorating methods with events, observables allow to observe their chosen properties. For instance, the `Command` class makes its `#value` and `#isEnabled` observable by calling {@link module:utils/observablemixin~ObservableMixin#set `set()`}:
 
 ```js
@@ -239,7 +243,7 @@ source.bar = 1;
 target.foo; // -> 1
 ```
 
-You can find more about bindings in the {@link framework/guides/architecture/ui-library UI library architecture} guide.
+You can also find more about data bindings in the user interface in the {@link framework/guides/architecture/ui-library UI library architecture} guide.
 
 ## Read next