Skip to content

Commit

Permalink
Fix typo in Client comment
Browse files Browse the repository at this point in the history
Signed-off-by: James Pond <[email protected]>
  • Loading branch information
jamesponddotco committed Feb 7, 2024
1 parent 9622c9e commit fd15c73
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion examples/aws/add-account/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func main() {
log.Fatalf("usage: %s <account-name> <role-arn>", 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.
Expand Down
2 changes: 1 addition & 1 deletion examples/aws/delete-account/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func main() {
log.Fatalf("usage: %s <account-id>", 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.
Expand Down
2 changes: 1 addition & 1 deletion examples/aws/iam-parameters/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion examples/aws/list-accounts/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion examples/aws/snapshot-account/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func main() {
log.Fatalf("usage: %s <account-id>", 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.
Expand Down
2 changes: 1 addition & 1 deletion examples/aws/update-account/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func main() {
log.Fatalf("usage: %s <account-id> <account-name> <role-arn>", 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.
Expand Down
2 changes: 1 addition & 1 deletion examples/azure/add-account/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func main() {
log.Fatalf("usage: %s <account-name> <app-id> <dir-id> <sub-id> <secret>", 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.
Expand Down
2 changes: 1 addition & 1 deletion examples/azure/delete-account/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func main() {
log.Fatalf("usage: %s <account-id>", 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.
Expand Down
2 changes: 1 addition & 1 deletion examples/azure/list-accounts/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion examples/azure/snapshot-account/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func main() {
log.Fatalf("usage: %s <account-id>", 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.
Expand Down
2 changes: 1 addition & 1 deletion examples/azure/update-account/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func main() {
log.Fatalf("usage: %s <account-name> <app-id> <dir-id> <sub-id>", 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.
Expand Down
2 changes: 1 addition & 1 deletion examples/blueprint/add/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func main() {
log.Fatalf("usage: %s <blueprint-name>", 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.
Expand Down
2 changes: 1 addition & 1 deletion examples/blueprint/delete/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func main() {
log.Fatalf("usage: %s <blueprint-id>", 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.
Expand Down
2 changes: 1 addition & 1 deletion examples/blueprint/export-budget/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func main() {
log.Fatalf("usage: %s <blueprint-id>", 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.
Expand Down
2 changes: 1 addition & 1 deletion examples/blueprint/export-image/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func main() {
log.Fatalf("usage: %s <blueprint-id>", 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.
Expand Down
2 changes: 1 addition & 1 deletion examples/blueprint/get/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func main() {
log.Fatalf("usage: %s <blueprint-id>", 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.
Expand Down
2 changes: 1 addition & 1 deletion examples/blueprint/list/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion examples/blueprint/update/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func main() {
log.Fatalf("usage: %s <blueprint-id> <blueprint-name>", 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.
Expand Down
2 changes: 1 addition & 1 deletion examples/user/me/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit fd15c73

Please sign in to comment.