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/quic_session_test.cc b/quic/core/quic_session_test.cc
index 8020de5..a517d47 100644
--- a/quic/core/quic_session_test.cc
+++ b/quic/core/quic_session_test.cc
@@ -1195,7 +1195,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);
}
@@ -1208,7 +1208,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);
}