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

Unified Diff: src/site/docs/library-tour/index.markdown

Issue 10910215: fix bugs in docs (Closed) Base URL: git@github.com:dart-lang/dartlang.org.git@master
Patch Set: Created 8 years, 3 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 | « src/site/articles/improving-the-dom/index.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/site/docs/library-tour/index.markdown
diff --git a/src/site/docs/library-tour/index.markdown b/src/site/docs/library-tour/index.markdown
index f7fb6dc8e6f0f61dda86cfbde101d063c553f4cc..099d6f486d14b51401e438b4c704e38dd8789a43 100644
--- a/src/site/docs/library-tour/index.markdown
+++ b/src/site/docs/library-tour/index.markdown
@@ -862,7 +862,7 @@ Future deleteDone = deleteLotsOfFiles();
Future copyDone = copyLotsOfFiles();
Future checksumDone = checksumLotsOfOtherFiles();
-Futures.join([deleteDone, copyDone, checksumDone]).then(() {
+Futures.wait([deleteDone, copyDone, checksumDone]).then((List values) {
print('Done with all the long steps');
});
{% endhighlight %}
« no previous file with comments | « src/site/articles/improving-the-dom/index.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698