| Index: pkg/http/lib/src/byte_stream.dart | 
| diff --git a/pkg/http/lib/src/byte_stream.dart b/pkg/http/lib/src/byte_stream.dart | 
| index 3ef0b6eede5abb7fe828f99b313b8011391610f7..f6d87ff1884107d05e3a384b9e7af16e50afdfc4 100644 | 
| --- a/pkg/http/lib/src/byte_stream.dart | 
| +++ b/pkg/http/lib/src/byte_stream.dart | 
| @@ -35,5 +35,5 @@ class ByteStream extends StreamView<List<int>> { | 
| toBytes().then((bytes) => decodeString(bytes, encoding)); | 
|  | 
| Stream<String> toStringStream([Encoding encoding=Encoding.UTF_8]) => | 
| -      wrapStream(mappedBy((bytes) => decodeString(bytes, encoding))); | 
| +      wrapStream(map((bytes) => decodeString(bytes, encoding))); | 
| } | 
|  |