From 62929536454bee27a4b249960e481eeddcc84cb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Rapha=C3=ABl=20Matte?= <35611957+jeralm@users.noreply.github.com> Date: Mon, 12 Aug 2024 23:05:45 -0400 Subject: [PATCH] docs: specify usage of the placeholder tag (#448) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cbe6224..205899f 100644 --- a/README.md +++ b/README.md @@ -561,7 +561,7 @@ Both can coexist with standard Tag parsing. | `name:"X"` | Long name, for overriding field name. | | `help:"X"` | Help text. | | `type:"X"` | Specify [named types](#custom-named-decoders) to use. | -| `placeholder:"X"` | Placeholder text. | +| `placeholder:"X"` | Placeholder input, if flag. e.g. `` `placeholder:""` `` will show `--flag-name=` when displaying help. | | `default:"X"` | Default value. | | `default:"1"` | On a command, make it the default. | | `default:"withargs"` | On a command, make it the default and allow args/flags from that command |