Merge pull request #1960 from nghialv/master

Fix typo
This commit is contained in:
Björn Rabenstein 2016-09-09 19:59:53 +02:00 committed by GitHub
commit 7e28b4509d

View file

@ -85,7 +85,7 @@ import (
// new chunk.
//
// From the 3rd timestamp on, a double-delta (ΔΔt) is saved:
// (t_{n} - t_{n-1}) - (t_{n-2} - t_{n-1})
// (t_{n} - t_{n-1}) - (t_{n-1} - t_{n-2})
// To perform that operation, the last Δt is saved at the end of the chunk for
// as long the chunk is not closed yet (see above).
//