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

Unified Diff: ch02.xml

Issue 103483002: add back dart:mirrors content, remove dart:isolate, misc. tweaks/updates (Closed) Base URL: https://github.com/dart-lang/dart-up-and-running-book.git@master
Patch Set: emphasize MirrorsUsed lots Created 7 years 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 | « ch01.xml ('k') | ch03.xml » ('j') | ch03.xml » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ch02.xml
diff --git a/ch02.xml b/ch02.xml
index ccf21a03503889934cc6a56ee85889bd44724c8b..87dc78a810a143f94b07e65f8fed392cccd977c3 100644
--- a/ch02.xml
+++ b/ch02.xml
@@ -2407,7 +2407,7 @@ num distance = p.distanceTo(new Point(4,4)); // Invoke distanceTo() on p.</progr
operations on the members of a single object:</para>
<programlisting format="linespecific" role="keep-together"><remark>lang-dart
-</remark>query('#button')
+</remark>querySelector('#button')
..text = 'Click to Confirm' // Get an object. Use its
..classes.add('important') // instance variables
..onClick.listen((e) =&gt; window.alert('Confirmed!')); // and methods.</programlisting>
@@ -3558,9 +3558,6 @@ void main() {
<emphasis>isolates</emphasis>. Each isolate has its own memory heap,
ensuring that no isolate’s state is accessible from any other
isolate.</para>
-
- <para>Learn more about isolates in <xref
- linkend="ch03-dartisolate---concurrency-with-isolates" />.</para>
</sect1>
<sect1 id="typedefs">
« no previous file with comments | « ch01.xml ('k') | ch03.xml » ('j') | ch03.xml » ('J')

Powered by Google App Engine
This is Rietveld 408576698