docs(http): fix MockBackend example

imports & syntax error fix

Closes #7383
This commit is contained in:
Kevin-K 2016-03-02 15:58:17 -05:00 committed by Misko Hevery
parent fba0e2ff12
commit 17f73cb7bc
1 changed files with 3 additions and 3 deletions

View File

@ -131,9 +131,9 @@ export class MockBackend implements ConnectionBackend {
* ### Example
*
* ```
* import {Http, BaseRequestOptions} from '@angular/http';
* import {Http, BaseRequestOptions, Response} from '@angular/http';
* import {MockBackend} from '@angular/http/testing';
* import {Injector} from '@angular/core';
* import {Injector, provide} from '@angular/core';
*
* it('should get a response', () => {
* var connection; //this will be set when a new connection is emitted from the backend.
@ -142,7 +142,7 @@ export class MockBackend implements ConnectionBackend {
* MockBackend,
* provide(Http, {useFactory: (backend, options) => {
* return new Http(backend, options);
* }, deps: [MockBackend, BaseRequestOptions]}]);
* }, deps: [MockBackend, BaseRequestOptions]})]);
* var backend = injector.get(MockBackend);
* var http = injector.get(Http);
* backend.connections.subscribe(c => connection = c);