From 703673fb9ed181d78120826e282d0cd9ab9f979a Mon Sep 17 00:00:00 2001 From: Hunter Morgan Date: Tue, 5 Dec 2017 11:35:17 -0800 Subject: [PATCH] website: fix typo in the guide to writing Terraform providers --- website/guides/writing-custom-terraform-providers.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/guides/writing-custom-terraform-providers.html.md b/website/guides/writing-custom-terraform-providers.html.md index ffcdfe34d6..561f0e2d60 100644 --- a/website/guides/writing-custom-terraform-providers.html.md +++ b/website/guides/writing-custom-terraform-providers.html.md @@ -567,7 +567,7 @@ func resourceServerRead(d *schema.ResourceData, m interface{}) error { This guide covers the schema and structure for implementing a Terraform provider using the provider framework. As next steps, reference the internal providers -for examples. Terraform also includes a full framework for testing frameworks. +for examples. Terraform also includes a full framework for testing providers. ## General Rules