fix typo in EntropyAccumulator function

This commit is contained in:
Marten Seemann
2016-05-02 16:36:48 +07:00
parent ad467ade58
commit d1a3d14cf1
3 changed files with 5 additions and 5 deletions

View File

@@ -125,7 +125,7 @@ func (h *sentPacketHandler) calculateExpectedEntropy(ackFrame *frames.AckFrame)
if !ok {
return 0, ErrMapAccess
}
expectedEntropy.Substract(i, packet.EntropyBit)
expectedEntropy.Subtract(i, packet.EntropyBit)
}
}
}