Skip to content

Commit

Permalink
Fix typo in error message.
Browse files Browse the repository at this point in the history
Signed-off-by: Brendan Winter <bwinter@vmware.com>
  • Loading branch information
bwinter committed Jul 28, 2023
1 parent 63534be commit 73bd9b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wavefront/resource_dashboard.go
Original file line number Diff line number Diff line change
Expand Up @@ -1048,7 +1048,7 @@ func resourceDashboardCreate(d *schema.ResourceData, meta interface{}) error {
if d.HasChanges("can_view", "can_modify") {
err = dashboards.SetACL(dashboard.ID, canView, canModify)
if err != nil {
return fmt.Errorf("error setting ACL on Alert %s. %s", d.Get("name"), err)
return fmt.Errorf("error setting ACL on Dashboard %s. %s", d.Get("name"), err)
}
}

Expand Down

0 comments on commit 73bd9b8

Please sign in to comment.