hare

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

commit 268bfa06b79ae4747c85ac357b2490b381e5c243
parent 4cadd7de2ed0eaa41c7e1d1dfc61a63662af577a
Author: Sebastian <sebastian@sebsite.pw>
Date:   Tue, 23 Jan 2024 15:57:39 -0500

os::exec: add reference to doc comment

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

Diffstat:
Mos/exec/cmd.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/os/exec/cmd.ha b/os/exec/cmd.ha @@ -12,7 +12,7 @@ use strings; // argument list is borrowed from the strings you pass into this command. // // If 'name' does not contain a '/', the $PATH will be consulted to find the -// correct executable. If path resolution fails, nocmd is returned. +// correct executable. If path resolution fails, [[nocmd]] is returned. // // let cmd = exec::cmd("echo", "hello world")!; // let proc = exec::start(&cmd)!;