From 2a2fe11e8dc113a180d506c186d489514aad2139 Mon Sep 17 00:00:00 2001 From: Alexey Toksarov Date: Tue, 18 Jul 2017 17:26:14 +0300 Subject: [PATCH] docs(aio): fix HttpClient setting new header sample --- 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 58650ebe45..fb1b7d6e7f 100644 --- a/aio/content/guide/http.md +++ b/aio/content/guide/http.md @@ -352,7 +352,7 @@ A common use of interceptors is to set default headers on outgoing responses. Fo ```javascript import {Injectable} from '@angular/core'; -import {HttpEvent, HttpInterceptor, HttpHandler, HttpRequest) from '@angular/common/http'; +import {HttpEvent, HttpInterceptor, HttpHandler, HttpRequest} from '@angular/common/http'; @Injectable() export class AuthInterceptor implements HttpInterceptor {