From 8f78b550027423a7ded90b1eb84d6da892ea6dea Mon Sep 17 00:00:00 2001 From: Konsta Lehtinen Date: Mon, 11 Mar 2019 22:26:14 +0200 Subject: [PATCH] Fix the typo in timer module documentation (#1181) --- MODULE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MODULE.md b/MODULE.md index 51519a03e..cade0d1ad 100644 --- a/MODULE.md +++ b/MODULE.md @@ -32,7 +32,7 @@ Below is the full list of currently supported modules. |Module Name|Behavior with zone.js patch|How to disable| |--|--|--| |on_property|target.onProp will become zone aware target.addEventListener(prop)|__Zone_disable_on_property = true| -|timers|setTimeout/setInterval/setImmediate will be patched as Zone MacroTask|__Zone_disable_timer = true| +|timers|setTimeout/setInterval/setImmediate will be patched as Zone MacroTask|__Zone_disable_timers = true| |requestAnimationFrame|requestAnimationFrame will be patched as Zone MacroTask|__Zone_disable_requestAnimationFrame = true| |blocking|alert/prompt/confirm will be patched as Zone.run|__Zone_disable_blocking = true| |EventTarget|target.addEventListener will be patched as Zone aware EventTask|__Zone_disable_EventTarget = true|