aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/mfixalloc.go
diff options
context:
space:
mode:
authorJerrin Shaji George <jerrinsg@gmail.com>2018-02-22 15:51:10 -0800
committerBrad Fitzpatrick <bradfitz@golang.org>2018-02-23 00:17:20 +0000
commit5b3cd56038fbc76d5094c6a3373776532cbe386d (patch)
tree7a50776586cc3279d55a8099d3c837d9502d9545 /src/runtime/mfixalloc.go
parent70b09c72716798caa1b8b55baabdb6a10e275472 (diff)
downloadgo-5b3cd56038fbc76d5094c6a3373776532cbe386d.tar.xz
runtime: fix a few typos in comments
Change-Id: I07a1eb02ffc621c5696b49491181300bf411f822 Reviewed-on: https://go-review.googlesource.com/96475 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/runtime/mfixalloc.go')
-rw-r--r--src/runtime/mfixalloc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/mfixalloc.go b/src/runtime/mfixalloc.go
index 7496671fbe..1febe782bb 100644
--- a/src/runtime/mfixalloc.go
+++ b/src/runtime/mfixalloc.go
@@ -11,7 +11,7 @@ package runtime
import "unsafe"
// FixAlloc is a simple free-list allocator for fixed size objects.
-// Malloc uses a FixAlloc wrapped around sysAlloc to manages its
+// Malloc uses a FixAlloc wrapped around sysAlloc to manage its
// MCache and MSpan objects.
//
// Memory returned by fixalloc.alloc is zeroed by default, but the