]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: add missing word in comment
authorIan Lance Taylor <iant@golang.org>
Wed, 28 Oct 2015 16:57:04 +0000 (09:57 -0700)
committerIan Lance Taylor <iant@golang.org>
Wed, 28 Oct 2015 23:09:44 +0000 (23:09 +0000)
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>

src/runtime/mbarrier.go

index 6ca2672b8d0b57248ff082c3fdfed8e4699ab42f..5aa1d20e7d30af030e323a46477d15b83ad29f97 100644 (file)
@@ -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