Skip to content

Commit ebc8168

Browse files
vitalmotifgopherbot
vitalmotif
authored andcommitted
all: fix some typos
Change-Id: I7e2c867efcc960553da77e395b0069ab6776cd9f GitHub-Last-Rev: eaa122d GitHub-Pull-Request: #205 Reviewed-on: https://go-review.googlesource.com/c/net/+/572995 Reviewed-by: Emmanuel Odeke <[email protected]> Reviewed-by: David Chase <[email protected]> Auto-Submit: Damien Neil <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Damien Neil <[email protected]>
1 parent 3678185 commit ebc8168

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

dns/dnsmessage/message_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1635,7 +1635,7 @@ func FuzzUnpackPack(f *testing.F) {
16351635

16361636
msgPacked, err := m.Pack()
16371637
if err != nil {
1638-
t.Fatalf("failed to pack message that was succesfully unpacked: %v", err)
1638+
t.Fatalf("failed to pack message that was successfully unpacked: %v", err)
16391639
}
16401640

16411641
var m2 Message

quic/rangeset.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func (s *rangeset[T]) add(start, end T) {
5050
if end <= r.end {
5151
return
5252
}
53-
// Possibly coalesce subsquent ranges into range i.
53+
// Possibly coalesce subsequent ranges into range i.
5454
r.end = end
5555
j := i + 1
5656
for ; j < len(*s) && r.end >= (*s)[j].start; j++ {

quic/retry_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ func TestParseInvalidRetryPackets(t *testing.T) {
521521
}} {
522522
t.Run(test.name, func(t *testing.T) {
523523
if _, ok := parseRetryPacket(test.pkt, originalDstConnID); ok {
524-
t.Errorf("parseRetryPacket succeded, want failure")
524+
t.Errorf("parseRetryPacket succeeded, want failure")
525525
}
526526
})
527527
}

quic/stream_limits_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ func TestStreamLimitStopSendingDoesNotUpdateMaxStreams(t *testing.T) {
249249
tc.writeFrames(packetType1RTT, debugFrameStopSending{
250250
id: s.id,
251251
})
252-
tc.wantFrame("recieved STOP_SENDING, send RESET_STREAM",
252+
tc.wantFrame("received STOP_SENDING, send RESET_STREAM",
253253
packetType1RTT, debugFrameResetStream{
254254
id: s.id,
255255
})

quic/version_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ func TestVersionNegotiationServerReceivesUnknownVersion(t *testing.T) {
3939
})
4040
gotPkt := te.read()
4141
if gotPkt == nil {
42-
t.Fatalf("got no response; want Version Negotiaion")
42+
t.Fatalf("got no response; want Version Negotiation")
4343
}
4444
if got := getPacketType(gotPkt); got != packetTypeVersionNegotiation {
45-
t.Fatalf("got packet type %v; want Version Negotiaion", got)
45+
t.Fatalf("got packet type %v; want Version Negotiation", got)
4646
}
4747
gotDst, gotSrc, versions := parseVersionNegotiation(gotPkt)
4848
if got, want := gotDst, srcConnID; !bytes.Equal(got, want) {

0 commit comments

Comments
 (0)