From a167bca927edbf49a4eadfa243905fa7c288561f Mon Sep 17 00:00:00 2001 From: Daniel Sogl Date: Tue, 13 Mar 2018 16:06:03 +0100 Subject: [PATCH] docs: unified console.log single string style (#22737) PR Close #22737 --- aio/content/examples/universal/src/app/hero.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/examples/universal/src/app/hero.service.ts b/aio/content/examples/universal/src/app/hero.service.ts index 18f9b72d2d..5519f1c105 100644 --- a/aio/content/examples/universal/src/app/hero.service.ts +++ b/aio/content/examples/universal/src/app/hero.service.ts @@ -30,7 +30,7 @@ export class HeroService { getHeroes (): Observable { return this.http.get(this.heroesUrl) .pipe( - tap(heroes => this.log(`fetched heroes`)), + tap(heroes => this.log('fetched heroes')), catchError(this.handleError('getHeroes', [])) ); }