From 043387fc8f8325a2a0de45c0933ff0af16ebb55b Mon Sep 17 00:00:00 2001 From: Paul Hinze Date: Thu, 30 Apr 2015 14:50:21 -0500 Subject: [PATCH] docs: Fix styling in provider code block Font was different from rest of the page and very weird lookin' --- website/source/docs/plugins/provider.html.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/source/docs/plugins/provider.html.md b/website/source/docs/plugins/provider.html.md index 232dd8c8c..5c3c720be 100644 --- a/website/source/docs/plugins/provider.html.md +++ b/website/source/docs/plugins/provider.html.md @@ -202,7 +202,7 @@ subsequent `terraform apply` fixes this resource. Most of the time, partial state is not required. When it is, it must be specifically enabled. An example is shown below: -
+```
 func resourceUpdate(d *schema.ResourceData, meta interface{}) error {
 	// Enable partial state mode
 	d.Partial(true)
@@ -230,7 +230,7 @@ func resourceUpdate(d *schema.ResourceData, meta interface{}) error {
 
 	return nil
 }
-
+``` In the example above, it is possible that setting the `tags` succeeds, but setting the `name` fails. In this scenario, we want to make sure