Skip to content

Commit aee6078

Browse files
fix typo
Co-authored-by: Dan Leehr <dleehr@users.noreply.github.com>
1 parent 182b8cc commit aee6078

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

internal/terraform/context_plan_actions_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ resource "test_object" "a" {
456456
expectPlanDiagnostics: func(m *configs.Config) (diags tfdiags.Diagnostics) {
457457
return diags.Append(&hcl.Diagnostic{
458458
Severity: hcl.DiagError,
459-
Summary: "Reference to non-existant action instance",
459+
Summary: "Reference to non-existent action instance",
460460
Detail: "Action instance was not found in the current context.",
461461
Subject: &hcl.Range{
462462
Filename: filepath.Join(m.Module.SourceDir, "main.tf"),
@@ -491,7 +491,7 @@ resource "test_object" "a" {
491491
expectPlanDiagnostics: func(m *configs.Config) (diags tfdiags.Diagnostics) {
492492
return diags.Append(&hcl.Diagnostic{
493493
Severity: hcl.DiagError,
494-
Summary: "Reference to non-existant action instance",
494+
Summary: "Reference to non-existent action instance",
495495
Detail: "Action instance was not found in the current context.",
496496
Subject: &hcl.Range{
497497
Filename: filepath.Join(m.Module.SourceDir, "main.tf"),

internal/terraform/node_action_trigger_instance_plan.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ func (n *nodeActionTriggerPlanInstance) Execute(ctx EvalContext, operation walkO
7373
if !ok {
7474
diags = diags.Append(&hcl.Diagnostic{
7575
Severity: hcl.DiagError,
76-
Summary: "Reference to non-existant action instance",
76+
Summary: "Reference to non-existent action instance",
7777
Detail: "Action instance was not found in the current context.",
7878
Subject: n.lifecycleActionTrigger.invokingSubject,
7979
})

0 commit comments

Comments
 (0)