summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmil Hessman <c.emil.hessman@gmail.com>2014-05-21 14:34:20 -0700
committerBrad Fitzpatrick <bradfitz@golang.org>2014-05-21 14:34:20 -0700
commit52abddb71273cd439a5ea6670270a165f08aba8c (patch)
tree6285f24ffea4330465ca9d43683a4a2a7b1835f6
parentcee8bcabfaecc064b033b8b19aa36f625760f33f (diff)
downloadgo-git-52abddb71273cd439a5ea6670270a165f08aba8c.tar.gz
doc: fix typo in sharemem codewalk
LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/98460045
-rw-r--r--doc/codewalk/sharemem.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/codewalk/sharemem.xml b/doc/codewalk/sharemem.xml
index d443e176e7..8b47f12b7a 100644
--- a/doc/codewalk/sharemem.xml
+++ b/doc/codewalk/sharemem.xml
@@ -171,7 +171,7 @@ and/or writes to a shared map.
<step title="Conclusion" src="doc/codewalk/urlpoll.go">
In this codewalk we have explored a simple example of using Go's concurrency
-primitives to share memory through commmunication.
+primitives to share memory through communication.
<br/><br/>
This should provide a starting point from which to explore the ways in which
goroutines and channels can be used to write expressive and concise concurrent