aboutsummaryrefslogtreecommitdiff
path: root/src/pkg
diff options
context:
space:
mode:
authorMaxim Pimenov <mpimenov@google.com>2012-01-10 12:56:25 -0800
committerRuss Cox <rsc@golang.org>2012-01-10 12:56:25 -0800
commitdcdc309c7cec0785cd83ddeb752ccebc29a1f83d (patch)
tree0580b4ccc477c2167815df82ab7d91de73b75598 /src/pkg
parent4435c8bf2a7d4fcc33fd15903487958590a157f9 (diff)
downloadgo-dcdc309c7cec0785cd83ddeb752ccebc29a1f83d.tar.xz
runtime: fix typo in comment
R=golang-dev CC=golang-dev https://golang.org/cl/5529059
Diffstat (limited to 'src/pkg')
-rw-r--r--src/pkg/runtime/malloc.goc2
1 files changed, 1 insertions, 1 deletions
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)