From b9f77cb1b333ae368d5bfcbfc477961f50a017f5 Mon Sep 17 00:00:00 2001 From: jennifersp Date: Wed, 21 Aug 2024 12:27:23 -0700 Subject: [PATCH] fix typo --- pgtype/uint32.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgtype/uint32.go b/pgtype/uint32.go index 76de8bcd..a668bda4 100644 --- a/pgtype/uint32.go +++ b/pgtype/uint32.go @@ -297,7 +297,7 @@ func (scanPlanBinaryTextToUint32Scanner) Scan(src []byte, dst any) error { } if len(src) != 4 { - return fmt.Errorf("invalid length for uint4: %v", len(src)) + return fmt.Errorf("invalid length for uint32: %v", len(src)) } n := uint64(binary.BigEndian.Uint32(src))