aboutsummaryrefslogtreecommitdiffstats
path: root/noise-types.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--noise-types.go2
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