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

@@ -97,7 +97,7 @@ var _ = Describe("receivedPacketHandler", func() {
})
Context("Entropy calculation", func() {
It("calculates the entropy for continously received packets", func() {
It("calculates the entropy for continuously received packets", func() {
for i := 1; i < 100; i++ {
entropyBit := false
if i%3 == 0 || i%5 == 0 {
@@ -131,7 +131,7 @@ var _ = Describe("receivedPacketHandler", func() {
})
Context("NACK range calculation", func() {
It("Returns no NACK ranges for continously received packets", func() {
It("Returns no NACK ranges for continuously received packets", func() {
for i := 1; i < 100; i++ {
entropyBit := false
if i%2 == 0 {