From: Russ Cox
Date: Mon, 26 Sep 2011 16:54:30 +0000 (-0400)
Subject: doc: fix memory model read visibility bug
X-Git-Tag: weekly.2011-10-06~98
X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=44d13e3cfe621352fe1daf6a6f580c0912799372;p=gostls13.git
doc: fix memory model read visibility bug
Fixes #2277.
R=dvyukov, r
CC=golang-dev
https://golang.org/cl/5083044
---
diff --git a/doc/go_mem.html b/doc/go_mem.html
index a388283588..45ee0f53f2 100644
--- a/doc/go_mem.html
+++ b/doc/go_mem.html
@@ -54,7 +54,7 @@ if both of the following hold:
-- w happens before r.
+- r does not happen before w.
- There is no other write w' to
v
that happens
after w but before r.