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.
This commit is contained in:
Adão Júnior 2016-01-15 21:15:21 -02:00 committed by Ward Bell
parent 677abb78b0
commit 6f1d2e9cd7
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ export class HeavyLoaderComponent {
} }
// Triggers the next round of Angular change detection // 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 // ensuring display of msg added in onDestroy
private _tick() { setTimeout(() => { }, 0); } private _tick() { setTimeout(() => { }, 0); }
} }