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.cc b/quic/core/quic_session.cc index d857572..36070a4 100644 --- a/quic/core/quic_session.cc +++ b/quic/core/quic_session.cc
@@ -124,7 +124,7 @@ if (stream_id == QuicUtils::GetInvalidStreamId(connection()->transport_version())) { 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); return; } @@ -248,7 +248,7 @@ if (stream_id == QuicUtils::GetInvalidStreamId(connection()->transport_version())) { 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); return; }