Browse Source

Fix typo

pull/646/head
Augusto 4 years ago committed by xpetit
parent
commit
aa14633609
  1. 2
      go/tests/rc/rc.go

2
go/tests/rc/rc.go

@ -90,7 +90,7 @@ passed to the program would not be allowed`,
flag.BoolVar(&noRelativeImports, "no-relative-imports", false, `Disallowes the use of relative imports`)
flag.BoolVar(&noFor, "no-for", false, `The "for" instruction is not allowed`)
flag.BoolVar(&casting, "cast", false, "Allowes casting")
flag.BoolVar(&noArrays, "no-arrays", false, "Deprecated use no-slices")
flag.BoolVar(&noArrays, "no-arrays", false, "Deprecated: use -no-slices")
flag.BoolVar(&noSlices, "no-slices", false, "Disallowes all slice types")
flag.BoolVar(&allowBuiltin, "allow-builtin", false, "Allowes all builtin functions and casting")
sort.Sort(sort.StringSlice(os.Args[1:]))

Loading…
Cancel
Save