From: Andrew Gerrand
Date: Fri, 3 May 2013 19:24:05 +0000 (-0400)
Subject: doc: fix formatting in effective go code snippet
X-Git-Tag: go1.1rc2~12
X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=48c4a87a94652898653c24f0b7a6e58f76fffa6b;p=gostls13.git
doc: fix formatting in effective go code snippet
Fixes #5403.
R=golang-dev, minux.ma
CC=golang-dev
https://golang.org/cl/9100046
---
diff --git a/doc/effective_go.html b/doc/effective_go.html
index e546c083b6..227659ef4c 100644
--- a/doc/effective_go.html
+++ b/doc/effective_go.html
@@ -1805,7 +1805,7 @@ is different from our custom Append
function above.
Schematically, it's like this:
-func append(slice []T, elements...T) []T
+func append(slice []T, elements ...T) []T
where T is a placeholder for any given type. You can't