Improve code comments
This commit is contained in:
parent
daa8db511c
commit
8791fb4cfd
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue