@@ -164,13 +164,13 @@ teardown usually want to happen in the opposite order from each other.
164
164
165
165
= head2 BEGIN
166
166
167
- Runs at compile time, As Soon As Possible , only runs once.
167
+ Runs at compile time, as soon as possible , only runs once.
168
168
169
169
Can have a return value that is provided even in later phases.
170
170
171
171
= head2 CHECK
172
172
173
- Runs at compile time, As Last As Possible , only runs once.
173
+ Runs at compile time, As late as possible , only runs once.
174
174
175
175
Can have a return value that is provided even in later phases.
176
176
@@ -180,7 +180,7 @@ travel back in time. You need a wormhole for that.
180
180
181
181
= head2 LINK
182
182
183
- Runs at link time, As Last As Possible , only runs once.
183
+ Runs at link time, As late as possible , only runs once.
184
184
185
185
Can have a return value that is provided even in later phases.
186
186
@@ -189,7 +189,7 @@ they're too late for the application-wide linking decisions.
189
189
190
190
= head2 INIT
191
191
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
193
193
once.
194
194
195
195
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.
207
207
208
208
= head2 END
209
209
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
211
211
once.
212
212
213
213
When phasers are in different modules, the C < INIT > and C < END > phasers are
0 commit comments