]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: fix typo in comment
authorMaxim Pimenov <mpimenov@google.com>
Tue, 10 Jan 2012 20:56:25 +0000 (12:56 -0800)
committerRuss Cox <rsc@golang.org>
Tue, 10 Jan 2012 20:56:25 +0000 (12:56 -0800)
R=golang-dev
CC=golang-dev
https://golang.org/cl/5529059

src/pkg/runtime/malloc.goc

index b71f5e433004cae7e7e947b2a660ff294650ec77..f1509cd9d91df496db9388d13cf236b5c4bd2910 100644 (file)
@@ -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)