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

Unified Diff: ch01.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: move a misplaced comment 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
Index: ch01.xml
diff --git a/ch01.xml b/ch01.xml
index f3743f49689d4b235fdae994726085aa1abb1918..f58e13ddc87cd84aad53e1212cd6d88b16577743 100644
--- a/ch01.xml
+++ b/ch01.xml
@@ -127,7 +127,7 @@ main() {
..text = 'Click to Confirm'
..classes.add('important')
..onClick.listen((e) => window.alert('Confirmed!'));
- query('#registration').children.add(button);
+ querySelector('#registration').children.add(button);
}</programlisting>
<para>You’ll learn about the Dart language and libraries in Chapters <xref
@@ -220,10 +220,9 @@ main() {
<para>Now that you know something about Dart, get ready to code! These
instructions feature the open-source Dart Editor tool. When you download
- Dart, you not only get Dart Editor,
- but also tools such as the Dart-to-JavaScript compiler and a version of
- Chromium (nicknamed <emphasis>Dartium</emphasis>) that includes the Dart
- VM.</para>
+ Dart, you not only get Dart Editor, but also tools such as the
+ Dart-to-JavaScript compiler and a version of Chromium (nicknamed
+ <emphasis>Dartium</emphasis>) that includes the Dart VM.</para>
<note>
<para>If you run into trouble installing and using Dart Editor, see
@@ -247,10 +246,10 @@ main() {
</listitem>
<listitem>
- <para>Unzip the file you downloaded. The resulting directory, which we’ll call your
- <emphasis>Dart installation directory</emphasis>, contains the
- <code>DartEditor</code> executable file and several subdirectories,
- including a <code>samples</code> directory.</para>
+ <para>Unzip the file you downloaded. The resulting directory, which
+ we’ll call your <emphasis>Dart installation directory</emphasis>,
+ contains the <code>DartEditor</code> executable file and several
+ subdirectories, including a <code>samples</code> directory.</para>
</listitem>
<listitem>
@@ -447,4 +446,4 @@ main() {
</sect3>
</sect2>
</sect1>
-</chapter>
+</chapter>

Powered by Google App Engine
This is Rietveld 408576698