Improve code comments

This commit is contained in:
Tobie Morgan Hitchcock 2016-10-14 21:26:26 +01:00
parent daa8db511c
commit 8791fb4cfd

View file

@ -65,9 +65,9 @@ var (
)
const (
// MinNumber is the minimum number to be encoded and decoded
// MinNumber is the minimum number which can be accurately serialized
MinNumber = -1 << 53
// MaxNumber is the maximum number to be encoded and decoded
// MaxNumber is the maximum number which can be accurately serialized
MaxNumber = 1<<53 - 1
)