Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(456)

Unified Diff: sky/sdk/README.md

Issue 1043283003: [Effen] s/Node/UINode/, s/Element/WrapperNode/, s/EventTarget/EventListenerNode/ (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/framework/fn.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/sdk/README.md
diff --git a/sky/sdk/README.md b/sky/sdk/README.md
index eaa874f15121589b85817d1b9dd3852891087fcb..98a08812c6325fe87df638ac82dcdac041576abc 100644
--- a/sky/sdk/README.md
+++ b/sky/sdk/README.md
@@ -32,7 +32,7 @@ The simplest Sky app is, appropriately, HelloWorldApp:
import 'package:sky/framework/fn.dart';
class HelloWorldApp extends App {
- Node build() {
+ UINode build() {
return new Text('Hello, world!');
}
}
@@ -45,7 +45,7 @@ void main() {
Execution starts in `main`, which creates the `HelloWorldApp`. The framework
then marks `HelloWorldApp` as dirty, which schedules it to build during the next
animation frame. Each animation frame, the framework calls `build` on all the
-dirty components and diffs the virtual `Node` hierarchy returned this frame with
+dirty components and diffs the virtual `UINode` hierarchy returned this frame with
the hierarchy returned last frame. Any differences are then applied as mutations
to the physical heiarchy retained by the engine.
« no previous file with comments | « sky/framework/fn.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698