spec: remove an unnecessary semicolon from code example

Change-Id: Ie4c92da0e3cbb97d3d7e03c7d15196c34f58a2cd
Reviewed-on: https://go-review.googlesource.com/42613
Reviewed-by: Robert Griesemer <gri@golang.org>
This commit is contained in:
Brad Fitzpatrick 2017-05-04 02:39:56 +00:00
parent f2c5f57a87
commit e963510330

View file

@ -1,6 +1,6 @@
<!--{
"Title": "The Go Programming Language Specification",
"Subtitle": "Version of April 28, 2017",
"Subtitle": "Version of May 3, 2017",
"Path": "/ref/spec"
}-->
@ -5126,7 +5126,7 @@ function completes.
<pre>
go Server()
go func(ch chan&lt;- bool) { for { sleep(10); ch &lt;- true; }} (c)
go func(ch chan&lt;- bool) { for { sleep(10); ch &lt;- true }} (c)
</pre>