From ad259a2944823d78ed8377d645546ac5912bcc34 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 5 Nov 2021 08:45:00 -0700 Subject: [PATCH] fix typo --- util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.go b/util.go index 255b5e2..c8fa7f1 100644 --- a/util.go +++ b/util.go @@ -24,7 +24,7 @@ var xvalues = [256]byte{ 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, } -// xtob converts the the first two hex bytes of x into a byte. +// xtob converts the first two hex bytes of x into a byte. func xtob(x string) (byte, bool) { b1 := xvalues[x[0]] b2 := xvalues[x[1]]