Skip to content

Commit

Permalink
Merge pull request #115 from johnmanjiro13/fix-typo
Browse files Browse the repository at this point in the history
refactor: Fix typo
  • Loading branch information
drlau authored Jun 3, 2022
2 parents 4d9ad90 + 99c657b commit ea3a4c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions notifier/github/notify.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func (g *NotifyService) Notify(body string) (exit int, err error) {
if isPlan {
if result.HasDestroy && cfg.WarnDestroy {
// Notify destroy warning as a new comment before normal plan result
if err = g.notifyDestoryWarning(body, result); err != nil {
if err = g.notifyDestroyWarning(body, result); err != nil {
return result.ExitCode, err
}
}
Expand Down Expand Up @@ -102,7 +102,7 @@ func (g *NotifyService) Notify(body string) (exit int, err error) {
})
}

func (g *NotifyService) notifyDestoryWarning(body string, result terraform.ParseResult) error {
func (g *NotifyService) notifyDestroyWarning(body string, result terraform.ParseResult) error {
cfg := g.client.Config
destroyWarningTemplate := g.client.Config.DestroyWarningTemplate
destroyWarningTemplate.SetValue(terraform.CommonTemplate{
Expand Down

0 comments on commit ea3a4c1

Please sign in to comment.