From 793b986860bbb13d484dc7ea8d33463ab98513a6 Mon Sep 17 00:00:00 2001 From: Chris Doherty Date: Fri, 1 Sep 2017 11:42:06 -0700 Subject: [PATCH] Cosmetic doc changes: - Having a map 'foo' with a key 'foo' is confusing. - it's -> its --- website/docs/configuration/variables.html.md | 4 ++-- website/intro/getting-started/build.html.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/website/docs/configuration/variables.html.md b/website/docs/configuration/variables.html.md index 109378541..63e64c4b9 100644 --- a/website/docs/configuration/variables.html.md +++ b/website/docs/configuration/variables.html.md @@ -306,14 +306,14 @@ Then the value of `foo` will be `baz` since it was the last value seen. However, for maps, the values are merged: ```shell -$ terraform apply -var 'foo={foo="bar"}' -var 'foo={bar="baz"}' +$ terraform apply -var 'foo={quux="bar"}' -var 'foo={bar="baz"}' ``` The resulting value of `foo` will be: ```shell { - foo = "bar" + quux = "bar" bar = "baz" } ``` diff --git a/website/intro/getting-started/build.html.md b/website/intro/getting-started/build.html.md index f43577401..f751ba1f1 100644 --- a/website/intro/getting-started/build.html.md +++ b/website/intro/getting-started/build.html.md @@ -122,7 +122,7 @@ initializes various local settings and data that will be used by subsequent commands. Terraform uses a plugin based architecture to support the numerous infrastructure -and service providers available. As of Terraform version 0.10.0, each "Provider" is it's +and service providers available. As of Terraform version 0.10.0, each "Provider" is its own encapsulated binary distributed separately from Terraform itself. The `terraform init` command will automatically download and install any Provider binary for the providers in use within the configuration, which in this case is