summaryrefslogtreecommitdiff
path: root/doc/go_mem.html
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2011-06-10 12:31:10 -0700
committerRobert Griesemer <gri@golang.org>2011-06-10 12:31:10 -0700
commit4e084584464334f6363c29ecbee3afb1dd096c1d (patch)
treecdd03332c47f188eac6de07ce9c309859d788eda /doc/go_mem.html
parent4cc9326b0200d42e161b4eebf905f892400ae189 (diff)
downloadgo-4e084584464334f6363c29ecbee3afb1dd096c1d.tar.gz
Go memory model: minor clarification
Fixes issue 1941. R=rsc CC=golang-dev http://codereview.appspot.com/4576053
Diffstat (limited to 'doc/go_mem.html')
-rw-r--r--doc/go_mem.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/go_mem.html b/doc/go_mem.html
index 906b858e8..a38828358 100644
--- a/doc/go_mem.html
+++ b/doc/go_mem.html
@@ -1,4 +1,5 @@
<!-- The Go Memory Model -->
+<!-- subtitle Version of June 10, 2011 -->
<style>
p.rule {
@@ -42,8 +43,8 @@ Also, if <span class="event">e<sub>1</sub></span> does not happen before <span c
after <span class="event">e<sub>2</sub></span>, then we say that <span class="event">e<sub>1</sub></span> and <span class="event">e<sub>2</sub></span> happen concurrently.
</p>
-<p>
-Within a single goroutine, the happens before order is the
+<p class="rule">
+Within a single goroutine, the happens-before order is the
order expressed by the program.
</p>