Skip to content

Commit

Permalink
Fix comment grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
bhou-crto committed Jan 16, 2025
1 parent b133624 commit c0eed5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/frontend/default-frontend.go
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ func parseFlagDefinition(line string) (string, string, string, string, string) {
func (self *defaultFrontend) getCmdEnvContext(cmd command.Command, envVars []string, consents []string) []string {
vars := append([]string{}, envVars...)

/* append environment variables that requires consent */
/* append environment variables that require consent */
for _, item := range consents {
switch item {
case consent.USERNAME:
Expand Down Expand Up @@ -523,7 +523,7 @@ func (self *defaultFrontend) getCmdEnvContext(cmd command.Command, envVars []str
}
}

/* append environment variables that do not requires consent */
/* append environment variables that do not require consent */
// append log level from configuration
logLevel := viper.GetString(config.LOG_LEVEL_KEY)
vars = append(vars, fmt.Sprintf("%s=%s",
Expand Down

0 comments on commit c0eed5b

Please sign in to comment.