From: Ian Lance Taylor Date: Wed, 18 May 2016 01:07:07 +0000 (-0700) Subject: doc/effective_go: clarify backward function reference X-Git-Tag: go1.7beta1~182 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c6a5b3602a87b2d1321ad11aa64b7f588bbb683b;p=gostls13.git doc/effective_go: clarify backward function reference Fixes #14656. Change-Id: I37a9aa51705ae18bd034f2cc6dbf06a55f969197 Reviewed-on: https://go-review.googlesource.com/23202 Reviewed-by: Rob Pike --- diff --git a/doc/effective_go.html b/doc/effective_go.html index 4ea3fae318..1e66c0c614 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -2014,7 +2014,7 @@ then make the receiver for the method a value of that type. type ByteSlice []byte func (slice ByteSlice) Append(data []byte) []byte { - // Body exactly the same as above + // Body exactly the same as the Append function defined above. }