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

Unified Diff: src/site/docs/tutorials/streams/index.markdown

Issue 246783005: fixing bug 18336, skipWhile comment was wrong (Closed) Base URL: https://github.com/dart-lang/dartlang.org.git@master
Patch Set: merge master Created 6 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/site/docs/tutorials/streams/index.markdown
diff --git a/src/site/docs/tutorials/streams/index.markdown b/src/site/docs/tutorials/streams/index.markdown
index c1980b7a37e983ae0599d62b1416ee8b1a212fce..21f9c63e90658d6cd96e3b1fbae1159f29d87a09 100644
--- a/src/site/docs/tutorials/streams/index.markdown
+++ b/src/site/docs/tutorials/streams/index.markdown
@@ -225,7 +225,8 @@ broadcastStream
broadcastStream
.skipWhile((value) => value < 3) // skip while true
- .listen((value) => print("skipWhile: $value")); // skipWhile: 4
+ .listen((value) => print("skipWhile: $value")); // skipWhile: 3
+ // skipWhile: 4
// skipWhile: 5
{% endprettify %}<!--- END(stream_subsets) -->
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698