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); } }