diff --git a/examples/iaasalpha/attach_nic/attach_nic.go b/examples/iaasalpha/attach_nic/attach_nic.go index 8a2ee94fb..754dfb1ca 100644 --- a/examples/iaasalpha/attach_nic/attach_nic.go +++ b/examples/iaasalpha/attach_nic/attach_nic.go @@ -63,5 +63,5 @@ func main() { os.Exit(1) } - fmt.Printf("[iaasalpha API] NIC %q has been successfully detacched from the server %s.\n", nicId, serverId) + fmt.Printf("[iaasalpha API] NIC %q has been successfully detached from the server %s.\n", nicId, serverId) } diff --git a/examples/iaasalpha/attach_public_ip/attach_public_ip.go b/examples/iaasalpha/attach_public_ip/attach_public_ip.go index e1f1f9725..a04c9b013 100644 --- a/examples/iaasalpha/attach_public_ip/attach_public_ip.go +++ b/examples/iaasalpha/attach_public_ip/attach_public_ip.go @@ -63,5 +63,5 @@ func main() { os.Exit(1) } - fmt.Printf("[iaasalpha API] PublicIp %q has been successfully detacched from the server %s.\n", publicIpId, serverId) + fmt.Printf("[iaasalpha API] PublicIp %q has been successfully detached from the server %s.\n", publicIpId, serverId) } diff --git a/examples/iaasalpha/attach_security_group/attach_security_group.go b/examples/iaasalpha/attach_security_group/attach_security_group.go index 994e50782..1ef9b135b 100644 --- a/examples/iaasalpha/attach_security_group/attach_security_group.go +++ b/examples/iaasalpha/attach_security_group/attach_security_group.go @@ -63,5 +63,5 @@ func main() { os.Exit(1) } - fmt.Printf("[iaasalpha API] SecurityGroup %q has been successfully detacched from the server %s.\n", securityGroupId, serverId) + fmt.Printf("[iaasalpha API] SecurityGroup %q has been successfully detached from the server %s.\n", securityGroupId, serverId) } diff --git a/examples/iaasalpha/attach_service_account/attach_service_account.go b/examples/iaasalpha/attach_service_account/attach_service_account.go index 52037635b..90db49a20 100644 --- a/examples/iaasalpha/attach_service_account/attach_service_account.go +++ b/examples/iaasalpha/attach_service_account/attach_service_account.go @@ -63,5 +63,5 @@ func main() { os.Exit(1) } - fmt.Printf("[iaasalpha API] Service account %q has been successfully detacched from the server %s.\n", serviceAccountMail, serverId) + fmt.Printf("[iaasalpha API] Service account %q has been successfully detached from the server %s.\n", serviceAccountMail, serverId) } diff --git a/examples/iaasalpha/attach_volume/attach_volume.go b/examples/iaasalpha/attach_volume/attach_volume.go index 50cbaea3e..1fef4e7dc 100644 --- a/examples/iaasalpha/attach_volume/attach_volume.go +++ b/examples/iaasalpha/attach_volume/attach_volume.go @@ -56,5 +56,5 @@ func main() { os.Exit(1) } - fmt.Printf("[iaasalpha API] Volume %q has been successfully detacched from the server %s.\n", volumeId, serverId) + fmt.Printf("[iaasalpha API] Volume %q has been successfully detached from the server %s.\n", volumeId, serverId) }