From: Josh Bleecher Snyder Date: Sat, 10 Sep 2016 21:05:51 +0000 (-0700) Subject: encoding/hex: fix example function name X-Git-Tag: go1.8beta1~1400 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=4cf95fda64d76ca044319fd0a292ad3a77c1da0b;p=gostls13.git encoding/hex: fix example function name Found by vet. Change-Id: I556d87f853a734002f779b04ba5a3588a3117106 Reviewed-on: https://go-review.googlesource.com/28958 Run-TryBot: Josh Bleecher Snyder Reviewed-by: Brad Fitzpatrick TryBot-Result: Gobot Gobot --- diff --git a/src/encoding/hex/example_test.go b/src/encoding/hex/example_test.go index 2cf756ce12..3580757a54 100644 --- a/src/encoding/hex/example_test.go +++ b/src/encoding/hex/example_test.go @@ -38,7 +38,7 @@ func ExampleDecode() { // Hello Gopher! } -func ExampleDecodedString() { +func ExampleDecodeString() { const s = "48656c6c6f20476f7068657221" decoded, err := hex.DecodeString(s) if err != nil {