hare

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

commit 1c6544969c637bc72c887fd9ed39273947fa4d51
parent ec090a1df4c9f58df7863bca05087e54f56f0dee
Author: Sebastian <sebastian@sebsite.pw>
Date:   Thu, 14 Sep 2023 00:06:29 -0400

cmd/hare: improve some help text

Makes it more correct, and more consistent with the man pages

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

Diffstat:
Mcmd/hare/main.ha | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/cmd/hare/main.ha b/cmd/hare/main.ha @@ -20,7 +20,7 @@ const help: []getopt::help = [ "<subcommand>", "args...", ("build", [ - "compiles the Hare program at <path>", + "compiles a Hare program or module", ('q', "build silently"), ('v', "print executed commands (specify twice to print arguments)"), ('a', "arch", "set target architecture"), @@ -45,7 +45,7 @@ const help: []getopt::help = [ "[path|module]", ]: []getopt::help), ("run", [ - "compiles and runs the Hare program at <path>", + "compiles and runs a Hare program or module", ('q', "build silently"), ('v', "print executed commands (specify twice to print arguments)"), ('a', "arch", "set target architecture"), @@ -57,7 +57,7 @@ const help: []getopt::help = [ "[path [args...]]", ]: []getopt::help), ("test", [ - "compiles and runs tests for Hare programs", + "compiles and runs tests for Hare code", ('q', "build silently"), ('v', "print executed commands (specify twice to print arguments)"), ('a', "arch", "set target architecture"),