Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fhussonnois committed Apr 30, 2017
1 parent be0546e commit 1019193
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/schemaregistrycli/registrycli.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ func (p *ArgParser) withForceArg() *ArgParser {
}

func (p *ArgParser) withCompatibilityArg() *ArgParser {
values := []string{"NONE", "FULL", "Beth", "FORWARD", "BACKWARD"}
values := []string{"NONE", "FULL", "FORWARD", "BACKWARD"}
p.Args.compatibility = p.Flag.String("level", "", "The new compatibility level. Must be one of "+strings.Join(values, ",")+" (Required)")
p.addValidators(CheckNotNull{name: "level", arg: func(args CommandArgs) string { return *args.compatibility }})
p.addValidators(CheckValueIn{name: "level", arg: func(args CommandArgs) string { return *args.compatibility }, values: values})
Expand Down

0 comments on commit 1019193

Please sign in to comment.