From 27cc49fe910d61658af4d9542020cd0205afea62 Mon Sep 17 00:00:00 2001 From: Mukesh Kumar Date: Sat, 1 Jan 2022 20:35:47 +0530 Subject: [PATCH] Update local values definition The definition of local values used "it" many times, making the sentence not very clear. --- website/docs/language/values/locals.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/language/values/locals.mdx b/website/docs/language/values/locals.mdx index aa529f9fe3..6706ad91da 100644 --- a/website/docs/language/values/locals.mdx +++ b/website/docs/language/values/locals.mdx @@ -12,8 +12,8 @@ description: >- > tutorial on HashiCorp Learn. A local value assigns a name to an [expression](/language/expressions), -so you can use it multiple times within a module without repeating -it. +so you can use the name multiple times within a module without repeating +the expression. If you're familiar with traditional programming languages, it can be useful to compare Terraform modules to function definitions: