Skip to content

Commit

Permalink
fix error message: MissingKeyValue.Valid
Browse files Browse the repository at this point in the history
  • Loading branch information
kozmod committed Jun 3, 2023
1 parent 9ff933c commit 68554d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/entity/entity.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func (v MissingKeyValue) Valid() error {
MissingKeyError:
return nil
default:
return xerrors.Errorf("templte option [%v] is not valid: %v", TemplateOptionsMissingKey, v)
return xerrors.Errorf("template option [%v] is not valid: %v", TemplateOptionsMissingKey, v)
}
}

Expand Down

0 comments on commit 68554d4

Please sign in to comment.