From fa33fdbc7dc29f5c24c9a82868cbaf076ba59214 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Tue, 28 Feb 2012 10:15:23 +1100 Subject: [PATCH] encoding/binary: better example leave that joke to Java. R=golang-dev, adg CC=golang-dev https://golang.org/cl/5695080 --- src/pkg/encoding/binary/example_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pkg/encoding/binary/example_test.go b/src/pkg/encoding/binary/example_test.go index 405ea67891..dec12ebf5d 100644 --- a/src/pkg/encoding/binary/example_test.go +++ b/src/pkg/encoding/binary/example_test.go @@ -25,9 +25,9 @@ func ExampleWrite() { func ExampleWrite_multi() { buf := new(bytes.Buffer) var data = []interface{}{ + uint16(61374), int8(-54), uint8(254), - uint16(48826), } for _, v := range data { err := binary.Write(buf, binary.LittleEndian, v) @@ -36,7 +36,7 @@ func ExampleWrite_multi() { } } fmt.Printf("%x", buf.Bytes()) - // Output: cafebabe + // Output: beefcafe } func ExampleRead() { -- 2.50.0