hare

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

commit 557d442fc7e698f47d05dfa1293e9e242cb6cf83
parent 64bc428ae7e1f18d8879d8dba3550bcd47ee1956
Author: Sebastian <sebastian@sebsite.pw>
Date:   Tue, 23 Jan 2024 15:57:52 -0500

time::date: add reference to doc comment

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

Diffstat:
Mtime/date/parse.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/time/date/parse.ha b/time/date/parse.ha @@ -22,7 +22,7 @@ export type parsefail = !rune; // date::parse(&v, "%H:%M:%S.%N", "22:07:08.000000000"); // date::parse(&v, "%z %Z %L", "+0100 CET Europe/Amsterdam"); // -// Parse will return parsefail, if an invalid format specifier is encountered +// Parse will return [[parsefail]] if an invalid format specifier is encountered // or if given string 's' does not match the layout. export fn parse(v: *virtual, layout: str, s: str) (void | parsefail) = { const liter = strings::iter(layout);