From 2326d6a4d75f9f3736046cc526eb593a403d4c7a Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Sun, 13 May 2018 19:33:41 +0200 Subject: Odds and ends --- noise-types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'noise-types.go') diff --git a/noise-types.go b/noise-types.go index 58aa0c2..2635e01 100644 --- a/noise-types.go +++ b/noise-types.go @@ -30,7 +30,7 @@ func loadExactHex(dst []byte, src string) error { return err } if len(slice) != len(dst) { - return errors.New("Hex string does not fit the slice") + return errors.New("hex string does not fit the slice") } copy(dst, slice) return nil -- cgit v1.2.3-59-g8ed1b