Skip to content

Commit 7d04af1

Browse files
committed
Extends abbreviations for clarity
I've never seen ALAP before. Though can work it out, seems easier to be clear. Also extended NYI to Not yet implemented
1 parent 6a1088f commit 7d04af1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/Language/phasers.pod6

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ C<Failure> or exception in the process.
2424
Here is a summary:
2525
2626
=begin code :skip-test
27-
BEGIN {...} # * at compile time, ASAP, only ever runs once
28-
CHECK {...} # * at compile time, ALAP, only ever runs once
29-
INIT {...} # * at runtime, ASAP, only ever runs once
30-
END {...} # at runtime, ALAP, only ever runs once
27+
BEGIN {...} # * at compile time, as soon as possible, only ever runs once
28+
CHECK {...} # * at compile time, as late as possible, only ever runs once
29+
INIT {...} # * at runtime, as soon as possible, only ever runs once
30+
END {...} # at runtime, as late as possible, only ever runs once
3131
DOC [BEGIN|CHECK|INIT] {...} # only in documentation mode
3232
3333
ENTER {...} # * at every block entry time, repeats on loop blocks.
@@ -48,7 +48,7 @@ CONTROL {...} # catch control exceptions, before LEAVE
4848
LAST {...} # supply tapped by whenever-block is done, runs very last
4949
QUIT {...} # catch async exceptions within a whenever-block, runs very last
5050
51-
COMPOSE {...} # when a role is composed into a class (NYI)
51+
COMPOSE {...} # when a role is composed into a class (Not yet implemented)
5252
CLOSE {...} # appears in a supply block, called when the supply is closed
5353
=end code
5454

0 commit comments

Comments
 (0)