From 1b225ef7b2390bf57a95acd9c49318e0d5bf553c Mon Sep 17 00:00:00 2001 From: Xavier Mitault Date: Sun, 27 Aug 2023 13:34:25 +0200 Subject: [PATCH] cli: add attribute doc for Flag.global (#19224) --- vlib/cli/flag.v | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vlib/cli/flag.v b/vlib/cli/flag.v index dfd08602abef62..d49e9dc88f99e6 100644 --- a/vlib/cli/flag.v +++ b/vlib/cli/flag.v @@ -23,7 +23,8 @@ pub mut: abbrev string // Desciption of flag description string - global bool + // If the flag is added to this command and to all subcommands + global bool // If flag is requierd required bool // Default value if no value provide by command line