From 44d13e3cfe621352fe1daf6a6f580c0912799372 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Mon, 26 Sep 2011 12:54:30 -0400 Subject: [PATCH] doc: fix memory model read visibility bug Fixes #2277. R=dvyukov, r CC=golang-dev https://golang.org/cl/5083044 --- doc/go_mem.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/go_mem.html b/doc/go_mem.html index a388283588c..45ee0f53f2b 100644 --- a/doc/go_mem.html +++ b/doc/go_mem.html @@ -54,7 +54,7 @@ if both of the following hold:

    -
  1. w happens before r.
  2. +
  3. r does not happen before w.
  4. There is no other write w' to v that happens after w but before r.