From: Maxim Pimenov Date: Tue, 10 Jan 2012 20:56:25 +0000 (-0800) Subject: runtime: fix typo in comment X-Git-Tag: weekly.2012-01-15~89 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=dcdc309c7cec0785cd83ddeb752ccebc29a1f83d;p=gostls13.git runtime: fix typo in comment R=golang-dev CC=golang-dev https://golang.org/cl/5529059 --- diff --git a/src/pkg/runtime/malloc.goc b/src/pkg/runtime/malloc.goc index b71f5e4330..f1509cd9d9 100644 --- a/src/pkg/runtime/malloc.goc +++ b/src/pkg/runtime/malloc.goc @@ -115,7 +115,7 @@ runtime·free(void *v) if(v == nil) return; - // If you change this also change mgc0.c:/^sweepspan, + // If you change this also change mgc0.c:/^sweep, // which has a copy of the guts of free. if(m->mallocing)