Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jennifersp committed Aug 21, 2024
1 parent 218c15a commit b9f77cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pgtype/uint32.go
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit b9f77cb

Please sign in to comment.