hare

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

commit 83d0448fa2936aa47c00f6b531534bf50d9849d0
parent 2ab29ff14258a7a7cd1323864e799458dc7c17c1
Author: Byron Torres <b@torresjrjr.com>
Date:   Mon, 31 Jan 2022 22:52:32 +0000

tidy whitespace

Signed-off-by: Byron Torres <b@torresjrjr.com>

Diffstat:
Mdatetime/arithmetic.ha | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/datetime/arithmetic.ha b/datetime/arithmetic.ha @@ -452,7 +452,7 @@ fn absi(n: i64) i64 = { const c = cases[i].0; const expected = cases[i].1; const case_dt = new(chrono::UTC, 0, - c.0, c.1, c.2, c.3, c.4, c.5, c.6)!; + c.0, c.1, c.2, c.3, c.4, c.5, c.6)!; assert(eq(dt, case_dt) == expected, "equality comparison failed"); }; @@ -473,7 +473,7 @@ fn absi(n: i64) i64 = { const c = cases[i].0; const expected = cases[i].1; const case_dt = new(chrono::UTC, 0, - c.0, c.1, c.2, c.3, c.4, c.5, c.6)!; + c.0, c.1, c.2, c.3, c.4, c.5, c.6)!; assert(is_after(case_dt, dt) == expected, "incorrect date ordering in is_after()"); }; @@ -494,7 +494,7 @@ fn absi(n: i64) i64 = { const c = cases[i].0; const expected = cases[i].1; const case_dt = new(chrono::UTC, 0, - c.0, c.1, c.2, c.3, c.4, c.5, c.6)!; + c.0, c.1, c.2, c.3, c.4, c.5, c.6)!; assert(is_before(case_dt, dt) == expected, "incorrect date ordering in is_before()"); };