provider/aws: Fix typo in error message (#6518)

This commit is contained in:
KOJIMA Kazunori 2016-05-06 23:57:04 +09:00 committed by Clint
parent f1031707f9
commit 2476dcbcae
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ func resourceAwsElasticacheParameterGroupCreate(d *schema.ResourceData, meta int
log.Printf("[DEBUG] Create Cache Parameter Group: %#v", createOpts)
_, err := conn.CreateCacheParameterGroup(&createOpts)
if err != nil {
return fmt.Errorf("Error creating DB Parameter Group: %s", err)
return fmt.Errorf("Error creating Cache Parameter Group: %s", err)
}
d.Partial(true)