| Index: sdk/lib/io/http_parser.dart | 
| diff --git a/sdk/lib/io/http_parser.dart b/sdk/lib/io/http_parser.dart | 
| index 64c23c91721c8cc358266ff7414fe1c1287bee08..dc397c3c1782daadd86fc3219b86b5a488aaaff8 100644 | 
| --- a/sdk/lib/io/http_parser.dart | 
| +++ b/sdk/lib/io/http_parser.dart | 
| @@ -754,7 +754,7 @@ class _HttpParser extends Stream<_HttpIncoming> { | 
| dataAvailable = _remainingContent; | 
| } | 
| // Always present the data as a view. This way we can handle all | 
| -          // cases like this, and the user will not experince different data | 
| +          // cases like this, and the user will not experience different data | 
| // typed (which could lead to polymorphic user code). | 
| List<int> data = new Uint8List.view( | 
| _buffer.buffer, _buffer.offsetInBytes + _index, dataAvailable); | 
|  |