From ae10daf055e7da8f897a76afb559955b714c1af7 Mon Sep 17 00:00:00 2001 From: Andrei Simionescu Date: Tue, 31 Oct 2017 11:07:42 +0200 Subject: [PATCH] Fix capitalization --- example_byteslice_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example_byteslice_test.go b/example_byteslice_test.go index 8085e33..f6a1dc6 100644 --- a/example_byteslice_test.go +++ b/example_byteslice_test.go @@ -17,7 +17,7 @@ func ExampleLPad() { } func ExampleUnset() { - data := []byte{0xba, 0xda, 0x55} + data := []byte{0xBA, 0xDA, 0x55} zeroes := []byte{0x00, 0x00, 0x00} dat, err := Unset(data, zeroes)