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

chore: Fix typos in doc strings #331

Merged
merged 1 commit into from
Apr 19, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions lib/zone.ts
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ interface ZoneSpec {
*
* When the zone is being forked, the request is forwarded to this method for interception.
*
* @param parentZoneDelegate Dalegate which performs the parent [ZoneSpec] operation.
* @param parentZoneDelegate Delegate which performs the parent [ZoneSpec] operation.
* @param currentZone The current [Zone] where the current interceptor has beed declared.
* @param targetZone The [Zone] which originally received the request.
* @param zoneSpec The argument passed into the `fork` method.
Expand All @@ -257,7 +257,7 @@ interface ZoneSpec {
/**
* Allows interception of the wrapping of the callback.
*
* @param parentZoneDelegate Dalegate which performs the parent [ZoneSpec] operation.
* @param parentZoneDelegate Delegate which performs the parent [ZoneSpec] operation.
* @param currentZone The current [Zone] where the current interceptor has beed declared.
* @param targetZone The [Zone] which originally received the request.
* @param delegate The argument passed into the `warp` method.
Expand All @@ -269,7 +269,7 @@ interface ZoneSpec {
/**
* Allows interception of the callback invocation.
*
* @param parentZoneDelegate Dalegate which performs the parent [ZoneSpec] operation.
* @param parentZoneDelegate Delegate which performs the parent [ZoneSpec] operation.
* @param currentZone The current [Zone] where the current interceptor has beed declared.
* @param targetZone The [Zone] which originally received the request.
* @param delegate The argument passed into the `run` method.
Expand All @@ -283,7 +283,7 @@ interface ZoneSpec {
/**
* Allows interception of the error handling.
*
* @param parentZoneDelegate Dalegate which performs the parent [ZoneSpec] operation.
* @param parentZoneDelegate Delegate which performs the parent [ZoneSpec] operation.
* @param currentZone The current [Zone] where the current interceptor has beed declared.
* @param targetZone The [Zone] which originally received the request.
* @param error The argument passed into the `handleError` method.
Expand All @@ -294,7 +294,7 @@ interface ZoneSpec {
/**
* Allows interception of task scheduling.
*
* @param parentZoneDelegate Dalegate which performs the parent [ZoneSpec] operation.
* @param parentZoneDelegate Delegate which performs the parent [ZoneSpec] operation.
* @param currentZone The current [Zone] where the current interceptor has beed declared.
* @param targetZone The [Zone] which originally received the request.
* @param task The argument passed into the `scheduleTask` method.
Expand All @@ -306,9 +306,9 @@ interface ZoneSpec {
task: Task, applyThis: any, applyArgs: any) => any;

/**
* Allows interception of task cancalation.
* Allows interception of task cancelation.
*
* @param parentZoneDelegate Dalegate which performs the parent [ZoneSpec] operation.
* @param parentZoneDelegate Delegate which performs the parent [ZoneSpec] operation.
* @param currentZone The current [Zone] where the current interceptor has beed declared.
* @param targetZone The [Zone] which originally received the request.
* @param task The argument passed into the `cancelTask` method.
Expand All @@ -319,7 +319,7 @@ interface ZoneSpec {
/**
* Notifies of changes to the task queue empty status.
*
* @param parentZoneDelegate Dalegate which performs the parent [ZoneSpec] operation.
* @param parentZoneDelegate Delegate which performs the parent [ZoneSpec] operation.
* @param currentZone The current [Zone] where the current interceptor has beed declared.
* @param targetZone The [Zone] which originally received the request.
* @param isEmpty
Expand Down Expand Up @@ -410,7 +410,7 @@ interface TaskData {
* before VM yield and the next [MacroTask] is executed.
* - [MacroTask] queue represents a set of tasks which are executed one at a time after each VM
* yield. The queue is order by time, and insertions can happen in any location.
* - [EventTask] is a set of tasks which can at any time be inserted to the head of the [MacroTask]
* - [EventTask] is a set of tasks which can at any time be inserted to the end of the [MacroTask]
* queue. This happens when the event fires.
*
*/
Expand Down