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

Unified Diff: sdk/lib/async/stream.dart

Issue 16285004: Better documentation on Sets and Maps, and more. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Change to runtime string patch - always check index of contains method. Created 7 years, 6 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
Index: sdk/lib/async/stream.dart
diff --git a/sdk/lib/async/stream.dart b/sdk/lib/async/stream.dart
index 43697ecc4ff4bd220422cddf605f09d3d0a869bd..bff0435af274aef86df2fb9a4f2bcb14d61df57c 100644
--- a/sdk/lib/async/stream.dart
+++ b/sdk/lib/async/stream.dart
@@ -1033,7 +1033,7 @@ abstract class StreamTransformer<S, T> {
*
* An example that duplicates all data events:
*
- * class DoubleTransformer<T> extends StreamEventTransformerBase<T, T> {
+ * class DoubleTransformer<T> extends StreamEventTransformer<T, T> {
* void handleData(T data, EventSink<T> sink) {
* sink.add(value);
* sink.add(value);

Powered by Google App Engine
This is Rietveld 408576698