Ver código fonte

Docs: Linked from the "architecture overview" to the "deep dive into observables" guide.

Aleksander Nowodzinski 7 anos atrás
pai
commit
21a0dd9303

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

@@ -175,6 +175,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 and see more 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
@@ -219,7 +223,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