From 9625430e2915aab4678db9a17b436aa264614c5e Mon Sep 17 00:00:00 2001 From: Connor Clark Date: Wed, 13 Mar 2019 19:25:07 -0700 Subject: [PATCH] misc: fix typo in comment --- lighthouse-core/lib/network-request.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lighthouse-core/lib/network-request.js b/lighthouse-core/lib/network-request.js index 5ed1acea4efb..687924e0bc90 100644 --- a/lighthouse-core/lib/network-request.js +++ b/lighthouse-core/lib/network-request.js @@ -302,7 +302,7 @@ module.exports = class NetworkRequest { * The total length of the encoded data is spread out among multiple events. The sum of the * values in onResponseReceived and all the onDataReceived events typically equals the value * seen on the onLoadingFinished event. In <1% of cases we see the values differ. As we process - * onResonseReceived and onDataReceived we accumulate the total encodedDataLength. When we + * onResponseReceived and onDataReceived we accumulate the total encodedDataLength. When we * process onLoadingFinished, we override the accumulated total. We do this so that if the * request is aborted or fails, we still get a value via the accumulation. *