Skip to content

Commit

Permalink
Update vlib/v/checker/infix.v
Browse files Browse the repository at this point in the history
Co-authored-by: Jose Mendoza  <56417208+StunxFS@users.noreply.github.com>
  • Loading branch information
felipensp and StunxFS authored Sep 25, 2024
1 parent f3b4229 commit 044120e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vlib/v/checker/infix.v
Original file line number Diff line number Diff line change
Expand Up @@ -964,7 +964,7 @@ fn (mut c Checker) check_duplicated_items(node &ast.ArrayInit) {
if item.str() !in unique_items {
unique_items << item_str
} else {
c.error('the item `${item_str}` is duplicated in the list', item.pos())
c.error('item `${item_str}` is duplicated in the list', item.pos())
}
}
}
Expand Down

0 comments on commit 044120e

Please sign in to comment.