Skip to content

Commit ed463ee

Browse files
committed
Consistently reference object rather than data
1 parent 7616c02 commit ed463ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

restapi/resource_api_object.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ func resourceRestAPI() *schema.Resource {
145145
"update_data": {
146146
Type: schema.TypeString,
147147
Optional: true,
148-
Description: "Valid JSON data to pass during to update requests.",
148+
Description: "Valid JSON object to pass during to update requests.",
149149
Sensitive: isDataSensitive,
150150
ValidateFunc: func(val interface{}, key string) (warns []string, errs []error) {
151151
v := val.(string)
@@ -162,7 +162,7 @@ func resourceRestAPI() *schema.Resource {
162162
"destroy_data": {
163163
Type: schema.TypeString,
164164
Optional: true,
165-
Description: "Valid JSON data to pass during to destroy requests.",
165+
Description: "Valid JSON object to pass during to destroy requests.",
166166
Sensitive: isDataSensitive,
167167
ValidateFunc: func(val interface{}, key string) (warns []string, errs []error) {
168168
v := val.(string)

0 commit comments

Comments
 (0)