Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

fixed typo #3405

Merged
merged 1 commit into from
Aug 25, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ contentLengthMismatch=The HTTP response body transferred fewer bytes than were a
incompleteChunkedEncoding=The HTTP response body is transferred with Chunked-Encoding, but the terminating zero-length chunk was never sent when the connection is closed.
quicProtocolError=There is a QUIC protocol error.
responseHeadersTruncated=The HTTP headers were truncated by an EOF.
quicHandshakeFailed=The QUIC crytpo handshake failed. This means that the server was unable to read any requests sent, so they may be resent.
quicHandshakeFailed=The QUIC crypto handshake failed. This means that the server was unable to read any requests sent, so they may be resent.
spdyInadequateTransportSecurity=Transport security is inadequate for the SPDY version.
spdyFlowControlError=The peer violated SPDY flow control.
spdyFrameSizeError=The peer sent an improperly sized SPDY frame.
Expand Down
2 changes: 1 addition & 1 deletion js/lib/errorUtil.js
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ module.exports.errorMap = {
356: 'quicProtocolError',
// The HTTP headers were truncated by an EOF.
357: 'responseHeadersTruncated',
// The QUIC crytpo handshake failed. This means that the server was unable
// The QUIC crypto handshake failed. This means that the server was unable
// to read any requests sent, so they may be resent.
358: 'quicHandshakeFailed',
// Transport security is inadequate for the SPDY version.
Expand Down