Chromium Code Reviews| Index: sdk/lib/async/stream.dart |
| diff --git a/sdk/lib/async/stream.dart b/sdk/lib/async/stream.dart |
| index 428e87835bb69938ed2d2a6e1b9d30260e8575e3..2c01e75da097bad31d5d3a6ccbd8aa5da97ef6fc 100644 |
| --- a/sdk/lib/async/stream.dart |
| +++ b/sdk/lib/async/stream.dart |
| @@ -842,7 +842,7 @@ abstract class Stream<T> { |
| * the returned stream is listened to. |
| */ |
| Stream<T> take(int count) { |
| - return new _TakeStream(this, count); |
| + return new _TakeStream<T>(this, count); |
| } |
| /** |