docs: unified console.log single string style (#22737)

PR Close #22737
This commit is contained in:
Daniel Sogl 2018-03-13 16:06:03 +01:00 committed by Miško Hevery
parent e3709f5d48
commit a167bca927
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ export class HeroService {
getHeroes (): Observable<Hero[]> {
return this.http.get<Hero[]>(this.heroesUrl)
.pipe(
tap(heroes => this.log(`fetched heroes`)),
tap(heroes => this.log('fetched heroes')),
catchError(this.handleError('getHeroes', []))
);
}