Skip to content

Commit 692ab52

Browse files
committed
Avoid parens
Just to be consistent with other code in that project.
1 parent 14d3fce commit 692ab52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/Reportable.p6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ my $next-date = now.DateTime.truncated-to: ‘day’;
3131

3232
if !%*ENV<DEBUGGABLE> and !%*ENV<TESTABLE> {
3333
start loop {
34-
$next-date .= later(:6hour);
34+
$next-date .= later: :6hours;
3535
next if $next-date < now.DateTime;
3636
await Promise.at: $next-date.Instant;
3737
$semaphore.acquire; # released in the snapshot sub

0 commit comments

Comments
 (0)