Skip to content

Commit 1347bc9

Browse files
committed
fix review comment
1 parent da8958f commit 1347bc9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/03_deployments_management/03_deployments_management.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func main() {
2929
fmt.Printf("Deployment: %s (ID: %s)\n", deployment.Name, deployment.ID)
3030
fmt.Printf(" Type: %s, Status: %s\n", deployment.Type, deployment.Status)
3131
fmt.Printf(" Provider: %s, Region: %s\n", deployment.CloudProvider, deployment.Region)
32-
fmt.Printf(" VM Version: %d GB\n", deployment.Version)
32+
fmt.Printf(" VM Version: %s GB\n", deployment.Version)
3333
fmt.Printf(" Created: %s\n", deployment.CreatedAt.Format(time.RFC3339))
3434
fmt.Println()
3535
}
@@ -61,7 +61,7 @@ func main() {
6161
fmt.Printf("Created deployment: %s (ID: %s)\n", createdDeployment.Name, createdDeployment.ID)
6262
fmt.Printf(" Type: %s, Status: %s\n", createdDeployment.Type, createdDeployment.Status)
6363
fmt.Printf(" Provider: %s, Region: %s\n", createdDeployment.CloudProvider, createdDeployment.Region)
64-
fmt.Printf(" VM Version: %d GB\n", createdDeployment.Version)
64+
fmt.Printf(" VM Version: %s GB\n", createdDeployment.Version)
6565
fmt.Printf(" Created: %s\n", createdDeployment.CreatedAt.Format(time.RFC3339))
6666
fmt.Printf(" Access Endpoint: %s\n", createdDeployment.AccessEndpoint)
6767
fmt.Println()

0 commit comments

Comments
 (0)