diff --git a/aio/content/guide/http.md b/aio/content/guide/http.md index 92362b4554..b69725442c 100644 --- a/aio/content/guide/http.md +++ b/aio/content/guide/http.md @@ -268,12 +268,12 @@ has a single `intercept()` method. Here is a simple interceptor which does nothi ```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 NoopInterceptor implements HttpInterceptor { intercept(req: HttpRequest, next: HttpHandler): Observable> { - return next.handle(Req); + return next.handle(req); } } ```