Skip to content

Commit

Permalink
fix spelling error
Browse files Browse the repository at this point in the history
  • Loading branch information
mbfrahry committed Sep 13, 2017
1 parent cb02a3d commit 442c69c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion azurerm/resource_arm_dns_zone.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func resourceArmDnsZone() *schema.Resource {
ForceNew: true,
},

"resource_group_name": resourceGroupNameDiffSupressSchema(),
"resource_group_name": resourceGroupNameDiffSuppressSchema(),

"number_of_record_sets": {
Type: schema.TypeString,
Expand Down
2 changes: 1 addition & 1 deletion azurerm/resource_arm_storage_account.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func resourceArmStorageAccount() *schema.Resource {
ValidateFunc: validateArmStorageAccountName,
},

"resource_group_name": resourceGroupNameDiffSupressSchema(),
"resource_group_name": resourceGroupNameDiffSuppressSchema(),

"location": locationSchema(),

Expand Down
2 changes: 1 addition & 1 deletion azurerm/resource_arm_traffic_manager_endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func resourceArmTrafficManagerEndpoint() *schema.Resource {
Optional: true,
},

"resource_group_name": resourceGroupNameDiffSupressSchema(),
"resource_group_name": resourceGroupNameDiffSuppressSchema(),
},
}
}
Expand Down
2 changes: 1 addition & 1 deletion azurerm/resource_arm_traffic_manager_profile.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ func resourceArmTrafficManagerProfile() *schema.Resource {
Set: resourceAzureRMTrafficManagerMonitorConfigHash,
},

"resource_group_name": resourceGroupNameDiffSupressSchema(),
"resource_group_name": resourceGroupNameDiffSuppressSchema(),

"tags": tagsSchema(),
},
Expand Down
2 changes: 1 addition & 1 deletion azurerm/resource_group_name.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func resourceGroupNameSchema() *schema.Schema {
}
}

func resourceGroupNameDiffSupressSchema() *schema.Schema {
func resourceGroupNameDiffSuppressSchema() *schema.Schema {
return &schema.Schema{
Type: schema.TypeString,
Required: true,
Expand Down

0 comments on commit 442c69c

Please sign in to comment.