From 45ad3fc00b80e6ebd4d29d047442af7517e6acc9 Mon Sep 17 00:00:00 2001 From: Camilla Date: Tue, 6 Aug 2024 10:09:08 +0200 Subject: [PATCH] Docs: Fix language error in xand description Co-authored-by: Stautis --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e57b6ee..f1841d2 100644 --- a/README.md +++ b/README.md @@ -577,7 +577,7 @@ Both can coexist with standard Tag parsing. | `enum:"X,Y,..."` | Set of valid values allowed for this flag. An enum field must be `required` or have a valid `default`. | | `group:"X"` | Logical group for a flag or command. | | `xor:"X,Y,..."` | Exclusive OR groups for flags. Only one flag in the group can be used which is restricted within the same command. When combined with `required`, at least one of the `xor` group will be required. | -| `xand:"X,Y,..."` | Inclusive AND groups for flags. All flags in the group must be used in the same command. When combined with `required`, all flags in the group will be required. | +| `xand:"X,Y,..."` | Exclsuive AND groups for flags. All flags in the group must be used in the same command. When combined with `required`, all flags in the group will be required. | | `prefix:"X"` | Prefix for all sub-flags. | | `envprefix:"X"` | Envar prefix for all sub-flags. | | `set:"K=V"` | Set a variable for expansion by child elements. Multiples can occur. |