Skip to content

Commit

Permalink
fix spellchecker
Browse files Browse the repository at this point in the history
  • Loading branch information
julieqiu committed Nov 4, 2024
1 parent 9a824f0 commit 2d1d738
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generator/internal/genclient/service_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func ReadServiceConfig(serviceConfigPath string) (*serviceconfig.Service, error)

var cfg serviceconfig.Service
if err := yaml.Unmarshal(y, &cfg); err != nil {
return nil, fmt.Errorf("error unmarshaling service config: %v", err)
return nil, fmt.Errorf("error unmarshalling service config: %v", err)
}

// An API Service Config will always have a `name` so if it is not populated,
Expand Down

0 comments on commit 2d1d738

Please sign in to comment.