From fbd3f191bd681163581bea57073d64a8ee7a729b Mon Sep 17 00:00:00 2001 From: Kirill Zaborsky Date: Thu, 3 Sep 2020 11:25:55 +0300 Subject: [PATCH] Minor typo --- backend/local/backend_local.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/local/backend_local.go b/backend/local/backend_local.go index b06de8016e..fdbec1b747 100644 --- a/backend/local/backend_local.go +++ b/backend/local/backend_local.go @@ -215,7 +215,7 @@ func (b *Local) contextFromPlanFile(pf *planfile.Reader, opts terraform.ContextO // If the caller sets this, we require that the stored prior state // has the same metadata, which is an extra safety check that nothing // has changed since the plan was created. (All of the "real-world" - // state manager implementstions support this, but simpler test backends + // state manager implementations support this, but simpler test backends // may not.) if currentStateMeta.Lineage != "" && priorStateFile.Lineage != "" { if priorStateFile.Serial != currentStateMeta.Serial || priorStateFile.Lineage != currentStateMeta.Lineage {