diff options
Diffstat (limited to 'core/flags/example')
| -rw-r--r-- | core/flags/example/example.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/flags/example/example.odin b/core/flags/example/example.odin index 1988eb3ee..a3af44790 100644 --- a/core/flags/example/example.odin +++ b/core/flags/example/example.odin @@ -114,7 +114,7 @@ main :: proc() { verbose: bool `usage:"Show verbose output."`, debug: bool `args:"hidden" usage:"print debug info"`, - varg: [dynamic]string `usage:"Any extra arguments go here."`, + overflow: [dynamic]string `usage:"Any extra arguments go here."`, } opt: Options |