Skip to content

Commit

Permalink
fix: typo in comment (#17635)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanchriswhite committed Sep 6, 2023
1 parent a8917b9 commit 01b8be0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func CreateClientConfig(ctx client.Context, customClientTemplate string, customC
configPath := filepath.Join(ctx.HomeDir, "config")
configFilePath := filepath.Join(configPath, "client.toml")

// when config.toml does not exist create and init with default values
// when client.toml does not exist create and init with default values
if _, err := os.Stat(configFilePath); os.IsNotExist(err) {
if err := os.MkdirAll(configPath, os.ModePerm); err != nil {
return ctx, fmt.Errorf("couldn't make client config: %w", err)
Expand Down

0 comments on commit 01b8be0

Please sign in to comment.