diff --git a/aio/content/examples/observables-in-angular/src/main.ts b/aio/content/examples/observables-in-angular/src/main.ts index c5e95560f5..f010819b4d 100644 --- a/aio/content/examples/observables-in-angular/src/main.ts +++ b/aio/content/examples/observables-in-angular/src/main.ts @@ -61,7 +61,7 @@ export class Routable1Component implements OnInit { navStart: Observable; constructor(private router: Router) { - // Create a new Observable the publishes only the NavigationStart event + // Create a new Observable that publishes only the NavigationStart event this.navStart = router.events.pipe( filter(evt => evt instanceof NavigationStart) ) as Observable;