From 5cde8b999b9e703dc47b07988c464c6ea057b7d3 Mon Sep 17 00:00:00 2001 From: davidair Date: Fri, 17 Jul 2020 11:09:45 -0400 Subject: [PATCH] Tiny typo in an error message Changing "An module" to "A module" in an error message --- configs/module.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/module.go b/configs/module.go index 76878b4aa..9ca4c2b76 100644 --- a/configs/module.go +++ b/configs/module.go @@ -265,7 +265,7 @@ func (m *Module) appendFile(file *File) hcl.Diagnostics { diags = append(diags, &hcl.Diagnostic{ Severity: hcl.DiagError, Summary: "Duplicate module call", - Detail: fmt.Sprintf("An module call named %q was already defined at %s. Module calls must have unique names within a module.", existing.Name, existing.DeclRange), + Detail: fmt.Sprintf("A module call named %q was already defined at %s. Module calls must have unique names within a module.", existing.Name, existing.DeclRange), Subject: &mc.DeclRange, }) }