@@ -246,7 +246,7 @@ interface ZoneSpec {
246
246
*
247
247
* When the zone is being forked, the request is forwarded to this method for interception.
248
248
*
249
- * @param parentZoneDelegate Dalegate which performs the parent [ZoneSpec] operation.
249
+ * @param parentZoneDelegate Delegate which performs the parent [ZoneSpec] operation.
250
250
* @param currentZone The current [Zone] where the current interceptor has beed declared.
251
251
* @param targetZone The [Zone] which originally received the request.
252
252
* @param zoneSpec The argument passed into the `fork` method.
@@ -257,7 +257,7 @@ interface ZoneSpec {
257
257
/**
258
258
* Allows interception of the wrapping of the callback.
259
259
*
260
- * @param parentZoneDelegate Dalegate which performs the parent [ZoneSpec] operation.
260
+ * @param parentZoneDelegate Delegate which performs the parent [ZoneSpec] operation.
261
261
* @param currentZone The current [Zone] where the current interceptor has beed declared.
262
262
* @param targetZone The [Zone] which originally received the request.
263
263
* @param delegate The argument passed into the `warp` method.
@@ -269,7 +269,7 @@ interface ZoneSpec {
269
269
/**
270
270
* Allows interception of the callback invocation.
271
271
*
272
- * @param parentZoneDelegate Dalegate which performs the parent [ZoneSpec] operation.
272
+ * @param parentZoneDelegate Delegate which performs the parent [ZoneSpec] operation.
273
273
* @param currentZone The current [Zone] where the current interceptor has beed declared.
274
274
* @param targetZone The [Zone] which originally received the request.
275
275
* @param delegate The argument passed into the `run` method.
@@ -283,7 +283,7 @@ interface ZoneSpec {
283
283
/**
284
284
* Allows interception of the error handling.
285
285
*
286
- * @param parentZoneDelegate Dalegate which performs the parent [ZoneSpec] operation.
286
+ * @param parentZoneDelegate Delegate which performs the parent [ZoneSpec] operation.
287
287
* @param currentZone The current [Zone] where the current interceptor has beed declared.
288
288
* @param targetZone The [Zone] which originally received the request.
289
289
* @param error The argument passed into the `handleError` method.
@@ -294,7 +294,7 @@ interface ZoneSpec {
294
294
/**
295
295
* Allows interception of task scheduling.
296
296
*
297
- * @param parentZoneDelegate Dalegate which performs the parent [ZoneSpec] operation.
297
+ * @param parentZoneDelegate Delegate which performs the parent [ZoneSpec] operation.
298
298
* @param currentZone The current [Zone] where the current interceptor has beed declared.
299
299
* @param targetZone The [Zone] which originally received the request.
300
300
* @param task The argument passed into the `scheduleTask` method.
@@ -306,9 +306,9 @@ interface ZoneSpec {
306
306
task : Task , applyThis : any , applyArgs : any ) => any ;
307
307
308
308
/**
309
- * Allows interception of task cancalation .
309
+ * Allows interception of task cancelation .
310
310
*
311
- * @param parentZoneDelegate Dalegate which performs the parent [ZoneSpec] operation.
311
+ * @param parentZoneDelegate Delegate which performs the parent [ZoneSpec] operation.
312
312
* @param currentZone The current [Zone] where the current interceptor has beed declared.
313
313
* @param targetZone The [Zone] which originally received the request.
314
314
* @param task The argument passed into the `cancelTask` method.
@@ -319,7 +319,7 @@ interface ZoneSpec {
319
319
/**
320
320
* Notifies of changes to the task queue empty status.
321
321
*
322
- * @param parentZoneDelegate Dalegate which performs the parent [ZoneSpec] operation.
322
+ * @param parentZoneDelegate Delegate which performs the parent [ZoneSpec] operation.
323
323
* @param currentZone The current [Zone] where the current interceptor has beed declared.
324
324
* @param targetZone The [Zone] which originally received the request.
325
325
* @param isEmpty
@@ -410,7 +410,7 @@ interface TaskData {
410
410
* before VM yield and the next [MacroTask] is executed.
411
411
* - [MacroTask] queue represents a set of tasks which are executed one at a time after each VM
412
412
* yield. The queue is order by time, and insertions can happen in any location.
413
- * - [EventTask] is a set of tasks which can at any time be inserted to the head of the [MacroTask]
413
+ * - [EventTask] is a set of tasks which can at any time be inserted to the end of the [MacroTask]
414
414
* queue. This happens when the event fires.
415
415
*
416
416
*/
0 commit comments