]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: fix a minor typo in comments
authorGuobiao Mei <meiguobiao@gmail.com>
Thu, 18 Dec 2014 15:53:00 +0000 (10:53 -0500)
committerMinux Ma <minux@golang.org>
Thu, 18 Dec 2014 20:35:56 +0000 (20:35 +0000)
Change-Id: I13a8aacd1b8243c992b539ab6bf7b5dff2a1393a
Reviewed-on: https://go-review.googlesource.com/1757
Reviewed-by: Minux Ma <minux@golang.org>
src/runtime/malloc2.go

index c975f845bc5934e8be35ea61261b5d5f44df8a3a..535e7cace3ba0aae067709e7161825c07c00887d 100644 (file)
@@ -40,7 +40,7 @@ import "unsafe"
 //
 //     3. If the MCentral free list is empty, replenish it by
 //        allocating a run of pages from the MHeap and then
-//        chopping that memory into objects of the given size.
+//        chopping that memory into objects of the given size.
 //        Allocating many objects amortizes the cost of locking
 //        the heap.
 //