Fix typo: attachement -> attachment

pull/6/head
Justin Santa Barbara 2016-10-18 17:52:48 -04:00
parent 4b7024efe7
commit c53d62a554
1 changed files with 1 additions and 1 deletions

View File

@ -1740,7 +1740,7 @@ func (c *Cloud) GetDiskPath(volumeName string) (string, error) {
return "", err
}
if len(info.Attachments) == 0 {
return "", fmt.Errorf("No attachement to volume %s", volumeName)
return "", fmt.Errorf("No attachment to volume %s", volumeName)
}
return aws.StringValue(info.Attachments[0].Device), nil
}