aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/mbarrier.go
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2015-10-28 09:57:04 -0700
committerIan Lance Taylor <iant@golang.org>2015-10-28 23:09:44 +0000
commitf6fd086d5ef25e4d9edc953aa1a5b75a475abebb (patch)
tree265e524badc57ab0e319f7f585f02269fd53afa5 /src/runtime/mbarrier.go
parent73ff7cb1ed56921c82bf6bdfc173ce8e49ea437c (diff)
downloadgo-f6fd086d5ef25e4d9edc953aa1a5b75a475abebb.tar.gz
go-f6fd086d5ef25e4d9edc953aa1a5b75a475abebb.zip
runtime: add missing word in comment
Change-Id: Iffe27445e35ec071cf0920a05c81b8a97a3ed712 Reviewed-on: https://go-review.googlesource.com/16431 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/runtime/mbarrier.go')
-rw-r--r--src/runtime/mbarrier.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/mbarrier.go b/src/runtime/mbarrier.go
index 6ca2672b8d..5aa1d20e7d 100644
--- a/src/runtime/mbarrier.go
+++ b/src/runtime/mbarrier.go
@@ -31,7 +31,7 @@ import "unsafe"
// Dealing with memory ordering:
//
// Dijkstra pointed out that maintaining the no black to white
-// pointers means that white to white pointers not need
+// pointers means that white to white pointers do not need
// to be noted by the write barrier. Furthermore if either
// white object dies before it is reached by the
// GC then the object can be collected during this GC cycle