hare

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

commit 561a20cb9fee8483b6fd74f087b1640acf8d4aa6
parent 7ce6e77df2569722c24da6474a0d11cb64ef4940
Author: Sebastian <sebastian@sebsite.pw>
Date:   Fri, 11 Mar 2022 18:34:56 -0500

path: improve PATHSEP doc comments

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

Diffstat:
Mpath/+freebsd.ha | 2+-
Mpath/+linux.ha | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/path/+freebsd.ha b/path/+freebsd.ha @@ -1,7 +1,7 @@ // License: MPL-2.0 // (c) 2021-2022 Drew DeVault <sir@cmpwn.com> -// Path separator, platform-specific. +// Platform-specific path separator. export def PATHSEP: u8 = '/': u32: u8; // Maximum length of a file path for this platform. diff --git a/path/+linux.ha b/path/+linux.ha @@ -1,7 +1,7 @@ // License: MPL-2.0 // (c) 2021-2022 Drew DeVault <sir@cmpwn.com> -// Path separator, platform-specific. +// Platform-specific path separator. export def PATHSEP: u8 = '/': u32: u8; // Maximum length of a file path for this platform.