diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-05-13 19:33:41 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-05-13 19:34:28 +0200 |
commit | 2326d6a4d75f9f3736046cc526eb593a403d4c7a (patch) | |
tree | da31622899bb84e256b22addd1604b8250582c44 /noise-types.go | |
parent | e94185681f4c19874392019b0d43bdfefcbb85b5 (diff) |
Odds and ends
Diffstat (limited to 'noise-types.go')
-rw-r--r-- | noise-types.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 |