Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/util/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func GetUserAgent(controllerName string) string {
}

// SplitStringSlice is a helper function to handle StringSliceFlag containing multiple values
// By default, StringSliceFlag supports repeated values, and multiple values, seperated by a comma
// By default, StringSliceFlag supports repeated values, and multiple values, separated by a comma
// e.g. --foo="bar,car" --foo=baz will result in []string{"bar", "car". "baz"}
// However, we disable this with urfave/cli/v2, as controls are not granular enough. You can either have all flags
// support comma separated values, or no flags. We can't have all flags support comma separated values
Expand Down
2 changes: 1 addition & 1 deletion tests/docker/test-helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ func (config *TestConfig) ProvisionServers(numOfServers int) error {
for i := 0; i < numOfServers; i++ {

// If a server i already exists, skip. This is useful for scenarios where
// the first server is started seperate from the rest of the servers
// the first server is started separate from the rest of the servers
if config.Servers != nil && i < len(config.Servers) {
continue
}
Expand Down