hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit b76a7ab5a224fa229ac845e686738e086a973315
parent 98b188ed7497b7a20ba4bc838139a56836b48b38
Author: Sebastian <sebastian@sebsite.pw>
Date:   Thu, 21 Apr 2022 15:44:37 -0400

cmd/hare: reword the help text for hare version -v

Signed-off-by: Sebastian <sebastian@sebsite.pw>

Diffstat:
Mcmd/hare/subcmds.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/hare/subcmds.ha b/cmd/hare/subcmds.ha @@ -511,7 +511,7 @@ fn test(args: []str) void = { fn version(args: []str) void = { const help: []getopt::help = [ "provides version information for the Hare environment", - ('v', "print more information"), + ('v', "print build parameters"), ]; const cmd = getopt::parse(args, help...); defer getopt::finish(&cmd);