Skip to content

Commit

Permalink
refactor: Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmanjiro13 committed May 31, 2022
1 parent 4d9ad90 commit 99c657b
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 99c657b

Please sign in to comment.