From 86dc57bd2c18df5d05bbe26243da871b12cf47fe Mon Sep 17 00:00:00 2001 From: Augusto Date: Wed, 3 Jun 2020 18:30:32 +0100 Subject: [PATCH] Fix typo --- rc/rc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc/rc.go b/rc/rc.go index 449f14e0..3fff1458 100644 --- a/rc/rc.go +++ b/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:]))