From 6f1d2e9cd79a4feeb0315b77d51e2bb6dcf62291 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ad=C3=A3o=20J=C3=BAnior?= Date: Fri, 15 Jan 2016 21:15:21 -0200 Subject: [PATCH] docs(structural-directives): change "JavaScript cycle" to "browser event loop" closes #710 It makes more sense since where gonna use it in Typescript and Dart as well. --- .../structural-directives/ts/app/heavy-loader.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/_examples/structural-directives/ts/app/heavy-loader.component.ts b/public/docs/_examples/structural-directives/ts/app/heavy-loader.component.ts index 3ec6f43b57..1b22384f75 100644 --- a/public/docs/_examples/structural-directives/ts/app/heavy-loader.component.ts +++ b/public/docs/_examples/structural-directives/ts/app/heavy-loader.component.ts @@ -28,7 +28,7 @@ export class HeavyLoaderComponent { } // Triggers the next round of Angular change detection - // after one turn of the JavaScript cycle + // after one turn of the browser event loop // ensuring display of msg added in onDestroy private _tick() { setTimeout(() => { }, 0); } }