Skip to content

Commit 563d5b2

Browse files
committed
Fix typo in error
1 parent 678e424 commit 563d5b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/writer/geoip2.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ func toMMDBType(key string, value any) (mmdbtype.DataType, error) {
156156
"static_ip_score":
157157
return mmdbtype.Float64(v), nil
158158
default:
159-
return nil, fmt.Errorf("unsupported numberic type for key %q: %T", key, value)
159+
return nil, fmt.Errorf("unsupported numeric type for key %q: %T", key, value)
160160
}
161161
default:
162162
return nil, fmt.Errorf("unsupported type for key %q: %T", key, value)

0 commit comments

Comments
 (0)