Skip to content

Commit d5f06e5

Browse files
committed
Temporarily remove mentions of Scheduler.cue edge case version reqs
It may be in 2019.05, but may have to wait until 2019.06, but either way, 2019.04 isn't a version.
1 parent 9551843 commit d5f06e5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

doc/Type/Scheduler.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ If C<$at> or C<$in> are C<Inf>, C<&code> will never be run; if C<$every> is
5555
C<Inf>, C<&code> will only be run once. If any of the three are C<-Inf>,
5656
C<&code> will be run immediately. If any of the three are C<NaN>, an
5757
L<X::Scheduler::CueInNaNSeconds|/type/X/Scheduler/CueInNanSeconds> exception
58-
will be thrown. This only applies to versions 2019.04 and later.
58+
will be thrown.
5959
6060
One should call the C<cancel> method on the returned C<Cancellation> object
6161
to cancel the (possibly repeated) cueing of the code.

doc/Type/X/Scheduler/CueInNaNSeconds.pod6

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
77
class X::Scheduler::CueInNaNSeconds is Exception { }
88
9-
In versions 2019.04 and later, when calling C<ThreadPoolScheduler.cue> or
10-
C<CurrentThreadScheduler.cue> with C<:at>, C<:in>, or C<:every> as C<NaN>, this
11-
exception gets thrown. For example, the following code:
9+
When calling C<ThreadPoolScheduler.cue> or C<CurrentThreadScheduler.cue> with
10+
C<:at>, C<:in>, or C<:every> as C<NaN>, this exception gets thrown. For
11+
example, the following code:
1212
1313
=for code :skip-test
1414
my Cancellation $c = $*SCHEDULER.cue({

0 commit comments

Comments
 (0)