From 49c46f549a3fb912861526acb6ac3a9e97e25804 Mon Sep 17 00:00:00 2001 From: kaiiak Date: Wed, 12 Aug 2020 21:44:59 +0800 Subject: [PATCH] Fix GetUint64 comment type error --- context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/context.go b/context.go index b39fbadb..dc85bef6 100644 --- a/context.go +++ b/context.go @@ -303,7 +303,7 @@ func (c *Context) GetInt64(key string) (i64 int64) { return } -// GetInt64 returns the value associated with the key as an unsigned integer. +// GetUint64 returns the value associated with the key as an unsigned integer. func (c *Context) GetUint64(key string) (ui64 uint64) { if val, ok := c.Get(key); ok && val != nil { ui64, _ = val.(uint64)