Skip to content

Commit

Permalink
refactor(types): fix lint errors and wrong implementation.
Browse files Browse the repository at this point in the history
  • Loading branch information
kehiy committed Sep 9, 2024
1 parent c83431e commit 6ec64de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/filter/filter_easyjson.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func easyjson4d398eaaDecodeGithubComDezhTechImmortalTypesFilter(in *jlexer.Lexer
out.Kinds = (out.Kinds)[:0]
}
for !in.IsDelim(']') {
v2 := types.Kind(in.Int())
v2 := types.Kind(in.Int16())
out.Kinds = append(out.Kinds, v2)
in.WantComma()
}
Expand Down

0 comments on commit 6ec64de

Please sign in to comment.