doc: fix formatting in effective go code snippet

Fixes #5403.

R=golang-dev, minux.ma
CC=golang-dev
https://golang.org/cl/9100046
This commit is contained in:
Andrew Gerrand 2013-05-03 15:24:05 -04:00
parent 988236ba86
commit 48c4a87a94
1 changed files with 1 additions and 1 deletions

View File

@ -1805,7 +1805,7 @@ is different from our custom <code>Append</code> function above.
Schematically, it's like this:
</p>
<pre>
func append(slice []<i>T</i>, elements...<i>T</i>) []<i>T</i>
func append(slice []<i>T</i>, elements ...<i>T</i>) []<i>T</i>
</pre>
<p>
where <i>T</i> is a placeholder for any given type. You can't