1
0
mirror of https://github.com/prometheus/prometheus synced 2025-04-01 00:06:53 +00:00

Merge pull request 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. // new chunk.
// //
// From the 3rd timestamp on, a double-delta (ΔΔt) is saved: // 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 // 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). // as long the chunk is not closed yet (see above).
// //