Fix "recevied" typo in //third_party/quic/core.
s/recevied/received/ in string literals used as |error_details| argument for
QuicConnection::CloseConnection(), and in comments.
gfe-relnote: n/a. Fix typo in error messages and comments.
PiperOrigin-RevId: 243864154
Change-Id: I3ec58f07091e4e4dc7bb2a03ad12380cfb562e17
diff --git a/quic/core/http/quic_spdy_session_test.cc b/quic/core/http/quic_spdy_session_test.cc
index e6e7f57..04605e1 100644
--- a/quic/core/http/quic_spdy_session_test.cc
+++ b/quic/core/http/quic_spdy_session_test.cc
@@ -1063,7 +1063,7 @@
QuicStringPiece("HT"));
EXPECT_CALL(*connection_,
CloseConnection(
- QUIC_INVALID_STREAM_ID, "Recevied data for an invalid stream",
+ QUIC_INVALID_STREAM_ID, "Received data for an invalid stream",
ConnectionCloseBehavior::SEND_CONNECTION_CLOSE_PACKET));
session_.OnStreamFrame(data1);
}
@@ -1076,7 +1076,7 @@
QUIC_ERROR_PROCESSING_STREAM, 0);
EXPECT_CALL(*connection_,
CloseConnection(
- QUIC_INVALID_STREAM_ID, "Recevied data for an invalid stream",
+ QUIC_INVALID_STREAM_ID, "Received data for an invalid stream",
ConnectionCloseBehavior::SEND_CONNECTION_CLOSE_PACKET));
session_.OnRstStream(rst1);
}