Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jippi committed Feb 10, 2024
1 parent f559abf commit bc18409
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/set/set.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func Command() *cobra.Command {
return fmt.Errorf("failed to upsert the key/value pair [%s]", key)
}

if validationErrors := validation.ValidateSignleAssignment(env, assignment.Name, nil, nil); len(validationErrors) > 0 {
if validationErrors := validation.ValidateSingleAssignment(env, assignment.Name, nil, nil); len(validationErrors) > 0 {
for _, errIsh := range validationErrors {
fmt.Fprintln(os.Stderr, validation.Explain(env, errIsh, false, false))
}
Expand Down

0 comments on commit bc18409

Please sign in to comment.