diff options
Diffstat (limited to 'core/flags/example/example.odin')
| -rw-r--r-- | core/flags/example/example.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/flags/example/example.odin b/core/flags/example/example.odin index b1d7b58d6..1988eb3ee 100644 --- a/core/flags/example/example.odin +++ b/core/flags/example/example.odin @@ -107,9 +107,9 @@ main :: proc() { // assignments: map[string]u8 `args:"name=assign" usage:"Number of jobs per worker."`, - // (Variadic) Only available in UNIX style: + // (Manifold) Only available in UNIX style: - // bots: [dynamic]string `args:"variadic=2,required"`, + // bots: [dynamic]string `args:"manifold=2,required"`, verbose: bool `usage:"Show verbose output."`, debug: bool `args:"hidden" usage:"print debug info"`, |