From 44f9fa6ce56e3377566d10883b7cb28e969b681d Mon Sep 17 00:00:00 2001 From: Sonu Kapoor Date: Thu, 5 Mar 2020 21:40:24 -0500 Subject: [PATCH] docs: add missing closing bracket (#35890) Closes #35887 PR Close #35890 --- aio/content/guide/http.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/http.md b/aio/content/guide/http.md index 75c52cf7cc..1949597c0d 100644 --- a/aio/content/guide/http.md +++ b/aio/content/guide/http.md @@ -185,7 +185,7 @@ searchHeroes(term: string): Observable { let heroesURL = `${this.heroesURL}?${term}`; return this.http.jsonp(heroesUrl, 'callback').pipe( - catchError(this.handleError('searchHeroes', []) // then handle the error + catchError(this.handleError('searchHeroes', [])) // then handle the error ); }; ```