Skip to content

Commit

Permalink
fix(time): update month
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandolguevara authored and lerno committed Oct 7, 2024
1 parent 6bbc77a commit 1a948e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/std/time/time.c3
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const Duration MIN = 60 * SEC;
const Duration HOUR = 60 * MIN;
const Duration DAY = 24 * HOUR;
const Duration WEEK = 7 * DAY;
const Duration MONTH = 30 * WEEK;
const Duration MONTH = 30 * DAY;
const Duration YEAR = 36525 * DAY / 100;

fn Duration us(long l) @inline => (Duration)l * US;
Expand Down

0 comments on commit 1a948e4

Please sign in to comment.