From 894a7c966e944c7b111e7766ec07f4f6f8f56fcb Mon Sep 17 00:00:00 2001 From: Charles Chan Date: Wed, 3 Jan 2018 12:00:19 -0800 Subject: [PATCH] website: tweak ambiguous nesting of punctuation inside quotes Our prevailing writing style is to place punctuation outside of quotes, since in many contexts Terraform itself treats punctuation within quotes as significant and so it can be confusing to use punctuation in quotes in our prose. --- website/intro/getting-started/build.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/intro/getting-started/build.html.md b/website/intro/getting-started/build.html.md index 21c2e9524c..de8f2123eb 100644 --- a/website/intro/getting-started/build.html.md +++ b/website/intro/getting-started/build.html.md @@ -90,7 +90,7 @@ This is a complete configuration that Terraform is ready to apply. The general structure should be intuitive and straightforward. The `provider` block is used to configure the named provider, in -our case "aws." A provider is responsible for creating and +our case "aws". A provider is responsible for creating and managing resources. Multiple provider blocks can exist if a Terraform configuration is composed of multiple providers, which is a common situation.