Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit 1d30d96

Browse files
vikermanjuliemr
authored andcommitted
chore: Fix typos in doc strings (#331)
1 parent 3a8deef commit 1d30d96

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Diff for: lib/zone.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ interface ZoneSpec {
246246
*
247247
* When the zone is being forked, the request is forwarded to this method for interception.
248248
*
249-
* @param parentZoneDelegate Dalegate which performs the parent [ZoneSpec] operation.
249+
* @param parentZoneDelegate Delegate which performs the parent [ZoneSpec] operation.
250250
* @param currentZone The current [Zone] where the current interceptor has beed declared.
251251
* @param targetZone The [Zone] which originally received the request.
252252
* @param zoneSpec The argument passed into the `fork` method.
@@ -257,7 +257,7 @@ interface ZoneSpec {
257257
/**
258258
* Allows interception of the wrapping of the callback.
259259
*
260-
* @param parentZoneDelegate Dalegate which performs the parent [ZoneSpec] operation.
260+
* @param parentZoneDelegate Delegate which performs the parent [ZoneSpec] operation.
261261
* @param currentZone The current [Zone] where the current interceptor has beed declared.
262262
* @param targetZone The [Zone] which originally received the request.
263263
* @param delegate The argument passed into the `warp` method.
@@ -269,7 +269,7 @@ interface ZoneSpec {
269269
/**
270270
* Allows interception of the callback invocation.
271271
*
272-
* @param parentZoneDelegate Dalegate which performs the parent [ZoneSpec] operation.
272+
* @param parentZoneDelegate Delegate which performs the parent [ZoneSpec] operation.
273273
* @param currentZone The current [Zone] where the current interceptor has beed declared.
274274
* @param targetZone The [Zone] which originally received the request.
275275
* @param delegate The argument passed into the `run` method.
@@ -283,7 +283,7 @@ interface ZoneSpec {
283283
/**
284284
* Allows interception of the error handling.
285285
*
286-
* @param parentZoneDelegate Dalegate which performs the parent [ZoneSpec] operation.
286+
* @param parentZoneDelegate Delegate which performs the parent [ZoneSpec] operation.
287287
* @param currentZone The current [Zone] where the current interceptor has beed declared.
288288
* @param targetZone The [Zone] which originally received the request.
289289
* @param error The argument passed into the `handleError` method.
@@ -294,7 +294,7 @@ interface ZoneSpec {
294294
/**
295295
* Allows interception of task scheduling.
296296
*
297-
* @param parentZoneDelegate Dalegate which performs the parent [ZoneSpec] operation.
297+
* @param parentZoneDelegate Delegate which performs the parent [ZoneSpec] operation.
298298
* @param currentZone The current [Zone] where the current interceptor has beed declared.
299299
* @param targetZone The [Zone] which originally received the request.
300300
* @param task The argument passed into the `scheduleTask` method.
@@ -306,9 +306,9 @@ interface ZoneSpec {
306306
task: Task, applyThis: any, applyArgs: any) => any;
307307

308308
/**
309-
* Allows interception of task cancalation.
309+
* Allows interception of task cancelation.
310310
*
311-
* @param parentZoneDelegate Dalegate which performs the parent [ZoneSpec] operation.
311+
* @param parentZoneDelegate Delegate which performs the parent [ZoneSpec] operation.
312312
* @param currentZone The current [Zone] where the current interceptor has beed declared.
313313
* @param targetZone The [Zone] which originally received the request.
314314
* @param task The argument passed into the `cancelTask` method.
@@ -319,7 +319,7 @@ interface ZoneSpec {
319319
/**
320320
* Notifies of changes to the task queue empty status.
321321
*
322-
* @param parentZoneDelegate Dalegate which performs the parent [ZoneSpec] operation.
322+
* @param parentZoneDelegate Delegate which performs the parent [ZoneSpec] operation.
323323
* @param currentZone The current [Zone] where the current interceptor has beed declared.
324324
* @param targetZone The [Zone] which originally received the request.
325325
* @param isEmpty
@@ -410,7 +410,7 @@ interface TaskData {
410410
* before VM yield and the next [MacroTask] is executed.
411411
* - [MacroTask] queue represents a set of tasks which are executed one at a time after each VM
412412
* 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]
414414
* queue. This happens when the event fires.
415415
*
416416
*/

0 commit comments

Comments
 (0)