hare

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

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

time::date: fix weird formatting in doc comment

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

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

diff --git a/time/date/date.ha b/time/date/date.ha @@ -203,8 +203,7 @@ export fn from_moment(m: chrono::moment) date = { return d; }; -// Creates a [[date]] from a [[time::instant]] -// in a [[time::chrono::locality]]. +// Creates a [[date]] from a [[time::instant]] in a [[time::chrono::locality]]. export fn from_instant(loc: chrono::locality, i: time::instant) date = { return from_moment(chrono::new(loc, i)); };