fix some typos

This commit is contained in:
Lucas Clemente
2016-08-06 14:35:04 +02:00
parent 8664ee44b8
commit c8bb818e4d
4 changed files with 5 additions and 5 deletions

View File

@@ -209,7 +209,7 @@ var _ = Describe("AckFrame", func() {
Expect(b.Len()).To(BeZero())
})
It("parses a frame with one long range, spanning mulitple blocks, of missing packets", func() { // 2345 missing packets
It("parses a frame with one long range, spanning multiple blocks, of missing packets", func() { // 2345 missing packets
b := bytes.NewReader([]byte{0x64, 0x5b, 0x9, 0x66, 0x1, 0xa, 0x1f, 0xff, 0x0, 0xff, 0x0, 0xff, 0x0, 0xff, 0x0, 0xff, 0x0, 0xff, 0x0, 0xff, 0x0, 0xff, 0x0, 0xff, 0x0, 0x32, 0x13, 0x4, 0x3, 0xb4, 0xda, 0x1, 0x0, 0x2, 0xe0, 0x0, 0x1, 0x9a, 0x0, 0x0, 0x81, 0x0})
frame, err := ParseAckFrame(b, 0)
Expect(err).ToNot(HaveOccurred())