From 9c2f6d72d62990bdb49120936d4a04fb85dd436f Mon Sep 17 00:00:00 2001 From: Steve Dignan Date: Mon, 29 Oct 2018 14:28:00 -0400 Subject: [PATCH] docs: minor wording change in code example comment (#26835) PR Close #26835 --- aio/content/examples/observables-in-angular/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;