Skip to content

Commit

Permalink
fix typo (#928)
Browse files Browse the repository at this point in the history
Co-authored-by: Gökçe Gök Klingel <[email protected]>
  • Loading branch information
GokceGK and GokceGK authored Oct 15, 2024
1 parent 4d7ddbe commit 43716f7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/iaasalpha/attach_nic/attach_nic.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
2 changes: 1 addition & 1 deletion examples/iaasalpha/attach_public_ip/attach_public_ip.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
2 changes: 1 addition & 1 deletion examples/iaasalpha/attach_volume/attach_volume.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

0 comments on commit 43716f7

Please sign in to comment.