diff --git a/examples/aws/add-account/main.go b/examples/aws/add-account/main.go index c198732..881716e 100644 --- a/examples/aws/add-account/main.go +++ b/examples/aws/add-account/main.go @@ -20,7 +20,7 @@ func main() { log.Fatalf("usage: %s ", os.Args[0]) } - // Create new Config to be initialize a Client. + // Create new Config to initialize a Client. cfg := cloudcraft.NewConfig(key) // Create a new Client instance with the given Config. diff --git a/examples/aws/delete-account/main.go b/examples/aws/delete-account/main.go index ed48422..6e07aea 100644 --- a/examples/aws/delete-account/main.go +++ b/examples/aws/delete-account/main.go @@ -20,7 +20,7 @@ func main() { log.Fatalf("usage: %s ", os.Args[0]) } - // Create new Config to be initialize a Client. + // Create new Config to initialize a Client. cfg := cloudcraft.NewConfig(key) // Create a new Client instance with the given Config. diff --git a/examples/aws/iam-parameters/main.go b/examples/aws/iam-parameters/main.go index 76fb808..0f746cf 100644 --- a/examples/aws/iam-parameters/main.go +++ b/examples/aws/iam-parameters/main.go @@ -16,7 +16,7 @@ func main() { log.Fatal("missing env var: CLOUDCRAFT_API_KEY") } - // Create new Config to be initialize a Client. + // Create new Config to initialize a Client. cfg := cloudcraft.NewConfig(key) // Create a new Client instance with the given Config. diff --git a/examples/aws/list-accounts/main.go b/examples/aws/list-accounts/main.go index f63a488..55ef93d 100644 --- a/examples/aws/list-accounts/main.go +++ b/examples/aws/list-accounts/main.go @@ -15,7 +15,7 @@ func main() { log.Fatal("missing env var: CLOUDCRAFT_API_KEY") } - // Create new Config to be initialize a Client. + // Create new Config to initialize a Client. cfg := cloudcraft.NewConfig(key) // Create a new Client instance with the given Config. diff --git a/examples/aws/snapshot-account/main.go b/examples/aws/snapshot-account/main.go index b175b28..9d52fb2 100644 --- a/examples/aws/snapshot-account/main.go +++ b/examples/aws/snapshot-account/main.go @@ -20,7 +20,7 @@ func main() { log.Fatalf("usage: %s ", os.Args[0]) } - // Create new Config to be initialize a Client. + // Create new Config to initialize a Client. cfg := cloudcraft.NewConfig(key) // Create a new Client instance with the given Config. diff --git a/examples/aws/update-account/main.go b/examples/aws/update-account/main.go index 67bd398..5033158 100644 --- a/examples/aws/update-account/main.go +++ b/examples/aws/update-account/main.go @@ -20,7 +20,7 @@ func main() { log.Fatalf("usage: %s ", os.Args[0]) } - // Create new Config to be initialize a Client. + // Create new Config to initialize a Client. cfg := cloudcraft.NewConfig(key) // Create a new Client instance with the given Config. diff --git a/examples/azure/add-account/main.go b/examples/azure/add-account/main.go index d35b7c0..13f07a8 100644 --- a/examples/azure/add-account/main.go +++ b/examples/azure/add-account/main.go @@ -20,7 +20,7 @@ func main() { log.Fatalf("usage: %s ", os.Args[0]) } - // Create new Config to be initialize a Client. + // Create new Config to initialize a Client. cfg := cloudcraft.NewConfig(key) // Create a new Client instance with the given Config. diff --git a/examples/azure/delete-account/main.go b/examples/azure/delete-account/main.go index 22e1272..5e1326f 100644 --- a/examples/azure/delete-account/main.go +++ b/examples/azure/delete-account/main.go @@ -20,7 +20,7 @@ func main() { log.Fatalf("usage: %s ", os.Args[0]) } - // Create new Config to be initialize a Client. + // Create new Config to initialize a Client. cfg := cloudcraft.NewConfig(key) // Create a new Client instance with the given Config. diff --git a/examples/azure/list-accounts/main.go b/examples/azure/list-accounts/main.go index affe778..b76b575 100644 --- a/examples/azure/list-accounts/main.go +++ b/examples/azure/list-accounts/main.go @@ -15,7 +15,7 @@ func main() { log.Fatal("missing env var: CLOUDCRAFT_API_KEY") } - // Create new Config to be initialize a Client. + // Create new Config to initialize a Client. cfg := cloudcraft.NewConfig(key) // Create a new Client instance with the given Config. diff --git a/examples/azure/snapshot-account/main.go b/examples/azure/snapshot-account/main.go index f77df20..eae583e 100644 --- a/examples/azure/snapshot-account/main.go +++ b/examples/azure/snapshot-account/main.go @@ -20,7 +20,7 @@ func main() { log.Fatalf("usage: %s ", os.Args[0]) } - // Create new Config to be initialize a Client. + // Create new Config to initialize a Client. cfg := cloudcraft.NewConfig(key) // Create a new Client instance with the given Config. diff --git a/examples/azure/update-account/main.go b/examples/azure/update-account/main.go index 3d81f82..ffdb7be 100644 --- a/examples/azure/update-account/main.go +++ b/examples/azure/update-account/main.go @@ -20,7 +20,7 @@ func main() { log.Fatalf("usage: %s ", os.Args[0]) } - // Create new Config to be initialize a Client. + // Create new Config to initialize a Client. cfg := cloudcraft.NewConfig(key) // Create a new Client instance with the given Config. diff --git a/examples/blueprint/add/main.go b/examples/blueprint/add/main.go index 12f2194..e458eea 100644 --- a/examples/blueprint/add/main.go +++ b/examples/blueprint/add/main.go @@ -20,7 +20,7 @@ func main() { log.Fatalf("usage: %s ", os.Args[0]) } - // Create new Config to be initialize a Client. + // Create new Config to initialize a Client. cfg := cloudcraft.NewConfig(key) // Create a new Client instance with the given Config. diff --git a/examples/blueprint/delete/main.go b/examples/blueprint/delete/main.go index cfb9a10..9d52928 100644 --- a/examples/blueprint/delete/main.go +++ b/examples/blueprint/delete/main.go @@ -20,7 +20,7 @@ func main() { log.Fatalf("usage: %s ", os.Args[0]) } - // Create new Config to be initialize a Client. + // Create new Config to initialize a Client. cfg := cloudcraft.NewConfig(key) // Create a new Client instance with the given Config. diff --git a/examples/blueprint/export-budget/main.go b/examples/blueprint/export-budget/main.go index b7cfda2..e6d800f 100644 --- a/examples/blueprint/export-budget/main.go +++ b/examples/blueprint/export-budget/main.go @@ -20,7 +20,7 @@ func main() { log.Fatalf("usage: %s ", os.Args[0]) } - // Create new Config to be initialize a Client. + // Create new Config to initialize a Client. cfg := cloudcraft.NewConfig(key) // Create a new Client instance with the given Config. diff --git a/examples/blueprint/export-image/main.go b/examples/blueprint/export-image/main.go index f74a7a5..060bf09 100644 --- a/examples/blueprint/export-image/main.go +++ b/examples/blueprint/export-image/main.go @@ -20,7 +20,7 @@ func main() { log.Fatalf("usage: %s ", os.Args[0]) } - // Create new Config to be initialize a Client. + // Create new Config to initialize a Client. cfg := cloudcraft.NewConfig(key) // Create a new Client instance with the given Config. diff --git a/examples/blueprint/get/main.go b/examples/blueprint/get/main.go index 659c103..cf480bc 100644 --- a/examples/blueprint/get/main.go +++ b/examples/blueprint/get/main.go @@ -20,7 +20,7 @@ func main() { log.Fatalf("usage: %s ", os.Args[0]) } - // Create new Config to be initialize a Client. + // Create new Config to initialize a Client. cfg := cloudcraft.NewConfig(key) // Create a new Client instance with the given Config. diff --git a/examples/blueprint/list/main.go b/examples/blueprint/list/main.go index 7d451ca..ffe289d 100644 --- a/examples/blueprint/list/main.go +++ b/examples/blueprint/list/main.go @@ -15,7 +15,7 @@ func main() { log.Fatal("missing env var: CLOUDCRAFT_API_KEY") } - // Create new Config to be initialize a Client. + // Create new Config to initialize a Client. cfg := cloudcraft.NewConfig(key) // Create a new Client instance with the given Config. diff --git a/examples/blueprint/update/main.go b/examples/blueprint/update/main.go index ad8fa02..a492508 100644 --- a/examples/blueprint/update/main.go +++ b/examples/blueprint/update/main.go @@ -20,7 +20,7 @@ func main() { log.Fatalf("usage: %s ", os.Args[0]) } - // Create new Config to be initialize a Client. + // Create new Config to initialize a Client. cfg := cloudcraft.NewConfig(key) // Create a new Client instance with the given Config. diff --git a/examples/user/me/main.go b/examples/user/me/main.go index 7869e55..1bcc09b 100644 --- a/examples/user/me/main.go +++ b/examples/user/me/main.go @@ -15,7 +15,7 @@ func main() { log.Fatal("missing env var: CLOUDCRAFT_API_KEY") } - // Create new Config to be initialize a Client. + // Create new Config to initialize a Client. cfg := cloudcraft.NewConfig(key) // Create a new Client instance with the given Config.