diff options
author | Cyrille Hemidy <cyrille.hemidy@gmail.com> | 2018-05-03 14:05:25 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2018-05-03 14:06:13 -0700 |
commit | 04b79137babed361fb227e3ad579adb2df4bb188 (patch) | |
tree | 883f16f8e572d6e160bbb3faab1c0f5d2d4858e1 /pkg/tcpip/transport | |
parent | 5c8db0a81882f009935cc6dd45cec47d5c38b267 (diff) |
Fix misspellings.
PiperOrigin-RevId: 195307689
Change-Id: I499f19af49875a43214797d63376f20ae788d2f4
Diffstat (limited to 'pkg/tcpip/transport')
-rw-r--r-- | pkg/tcpip/transport/tcp/snd.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/tcpip/transport/tcp/snd.go b/pkg/tcpip/transport/tcp/snd.go index ad94aecd8..6c363a929 100644 --- a/pkg/tcpip/transport/tcp/snd.go +++ b/pkg/tcpip/transport/tcp/snd.go @@ -152,7 +152,7 @@ func newSender(ep *endpoint, iss, irs seqnum.Value, sndWnd seqnum.Size, mss uint // updateMaxPayloadSize updates the maximum payload size based on the given // MTU. If this is in response to "packet too big" control packets (indicated -// by the count argument), it also reduces the number of oustanding packets and +// by the count argument), it also reduces the number of outstanding packets and // attempts to retransmit the first packet above the MTU size. func (s *sender) updateMaxPayloadSize(mtu, count int) { m := mtu - header.TCPMinimumSize |