[ dart:_http ] Fix typo in HTTP response timeline event

Fixes https://github.com/dart-lang/sdk/issues/42800

Change-Id: I4ce660f496484255614b019bbb56976f5c2b31ac
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/155481
Reviewed-by: Kenzie Schmoll <kenzieschmoll@google.com>
This commit is contained in:
Ben Konyi 2020-07-22 20:30:53 +00:00
parent 0884dae36c
commit 2efb5bebc7

View file

@ -1091,7 +1091,7 @@ class _HttpClientRequest extends _HttpOutboundMessage<HttpClientResponse>
}
_responseCompleter.future.then((response) {
_timeline?.instant('Response receieved');
_timeline?.instant('Response received');
Map formatConnectionInfo() => {
'localPort': response.connectionInfo?.localPort,
'remoteAddress': response.connectionInfo?.remoteAddress.address,