From 8791fb4cfde48260ec58176c6c738b1fe032ff55 Mon Sep 17 00:00:00 2001 From: Tobie Morgan Hitchcock Date: Fri, 14 Oct 2016 21:26:26 +0100 Subject: [PATCH] Improve code comments --- util/keys/keys.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/keys/keys.go b/util/keys/keys.go index c112fcc7..38e93590 100644 --- a/util/keys/keys.go +++ b/util/keys/keys.go @@ -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 )