Skip to content

Commit e4f40e6

Browse files
committed
Language improvements in phasers.pod
[Coke]++, Closes #381
1 parent 7950162 commit e4f40e6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/Language/phasers.pod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -164,13 +164,13 @@ teardown usually want to happen in the opposite order from each other.
164164
165165
=head2 BEGIN
166166
167-
Runs at compile time, As Soon As Possible, only runs once.
167+
Runs at compile time, as soon as possible, only runs once.
168168
169169
Can have a return value that is provided even in later phases.
170170
171171
=head2 CHECK
172172
173-
Runs at compile time, As Last As Possible, only runs once.
173+
Runs at compile time, As late as possible, only runs once.
174174
175175
Can have a return value that is provided even in later phases.
176176
@@ -180,7 +180,7 @@ travel back in time. You need a wormhole for that.
180180
181181
=head2 LINK
182182
183-
Runs at link time, As Last As Possible, only runs once.
183+
Runs at link time, As late as possible, only runs once.
184184
185185
Can have a return value that is provided even in later phases.
186186
@@ -189,7 +189,7 @@ they're too late for the application-wide linking decisions.
189189
190190
=head2 INIT
191191
192-
Runs after compilation during main execution, As Soon As Possible, only runs
192+
Runs after compilation during main execution, as soon as possible, only runs
193193
once.
194194
195195
Can have a return value that is provided even in later phases.
@@ -207,7 +207,7 @@ An C<INIT> only runs once for all copies of a cloned closure.
207207
208208
=head2 END
209209
210-
Runs after compilation during main execution, As Last As Possible, only runs
210+
Runs after compilation during main execution, as late as possible, only runs
211211
once.
212212
213213
When phasers are in different modules, the C<INIT> and C<END> phasers are

0 commit comments

Comments
 (0)