docs: Fix styling in provider code block
Font was different from rest of the page and very weird lookin'
This commit is contained in:
parent
99ce760569
commit
043387fc8f
|
@ -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:
|
||||
|
||||
<pre class="prettyprint">
|
||||
```
|
||||
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
|
||||
}
|
||||
</pre>
|
||||
```
|
||||
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue