From 48c4a87a94652898653c24f0b7a6e58f76fffa6b Mon Sep 17 00:00:00 2001
From: Andrew Gerrand
Date: Fri, 3 May 2013 15:24:05 -0400
Subject: [PATCH] doc: fix formatting in effective go code snippet
Fixes #5403.
R=golang-dev, minux.ma
CC=golang-dev
https://golang.org/cl/9100046
---
doc/effective_go.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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
--
2.48.1