From 10abfe6008e59317c00065a8a7588509229ebcd7 Mon Sep 17 00:00:00 2001 From: LeoLiao Date: Sat, 7 Jul 2018 23:40:48 +0800 Subject: [PATCH] cmd/geth/main.go: fixed typo --- cmd/geth/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/geth/main.go b/cmd/geth/main.go index f4a0ac5df6..52308948fc 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -202,7 +202,7 @@ func init() { if err := debug.Setup(ctx); err != nil { return err } - // Cap the cache allowance and tune the garbage colelctor + // Cap the cache allowance and tune the garbage collector var mem gosigar.Mem if err := mem.Get(); err == nil { allowance := int(mem.Total / 1024 / 1024 / 3)