cmd/geth: fixed comment typo (#17140)

This commit is contained in:
LeoLiao 2018-07-09 16:38:52 +08:00 committed by Péter Szilágyi
parent dbae1dc7b3
commit 4dbefc1f25
1 changed files with 1 additions and 1 deletions

View File

@ -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)