From ecbef87efa10e5b11066bf6fe566c62e33be4d1b Mon Sep 17 00:00:00 2001 From: gc Date: Thu, 12 Jan 2017 08:05:17 +0800 Subject: [PATCH] docs(zone.ts): fix typo (#583) --- lib/zone.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/zone.ts b/lib/zone.ts index 8a44ba091..f55439ffd 100644 --- a/lib/zone.ts +++ b/lib/zone.ts @@ -97,7 +97,7 @@ * * ### [TimerTask] * - * [TimerTask]s represents work which will be done after some delay. (Sometimes the delay is + * [TimerTask]s represent work which will be done after some delay. (Sometimes the delay is * approximate such as on next available animation frame). Typically these methods include: * `setTimeout`, `setImmediate`, `setInterval`, `requestAnimationFrame`, and all browser specif * variants. @@ -105,7 +105,7 @@ * * ### [EventTask] * - * [EventTask]s represents a request to create a listener on an event. Unlike the other task + * [EventTask]s represent a request to create a listener on an event. Unlike the other task * events may never be executed, but typically execute more than once. There is no queue of * events, rather their callbacks are unpredictable both in order and time. *