diff options
| author | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2025-06-09 08:45:16 -0400 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2025-06-09 11:27:27 -0400 |
| commit | e20db8df890366f874bf4a956311b92be2d1ac51 (patch) | |
| tree | db251d8d4db6efba13ba434bf632e3c6642a27cd /core/flags/example/example.odin | |
| parent | 87247b8bb787e53f7ca26fba1a11739844bf442d (diff) | |
flags: Rename `variadic` to `manifold` (breaking change)
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"`, |