Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/angular2/src/http/base_request_options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export class RequestOptions {
*
* ### Example ([live demo](http://plnkr.co/edit/LEKVSx?p=preview))
*
* ```
* ```typescript
* import {bind, bootstrap} from 'angular2/angular2';
* import {HTTP_BINDINGS, Http, BaseRequestOptions, RequestOptions} from 'angular2/http';
* import {App} from './myapp';
Expand Down
2 changes: 1 addition & 1 deletion modules/angular2/src/http/base_response_options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export class ResponseOptions {
*
* ### Example ([live demo](http://plnkr.co/edit/qv8DLT?p=preview))
*
* ```
* ```typescript
* import {bind, bootstrap} from 'angular2/angular2';
* import {HTTP_BINDINGS, Headers, Http, BaseResponseOptions, ResponseOptions} from 'angular2/http';
* import {App} from './myapp';
Expand Down
4 changes: 2 additions & 2 deletions modules/angular2/src/http/http.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function mergeOptions(defaultOpts, providedOpts, method, url): RequestOptions {
*
* #Example
*
* ```
* ```typescript
* import {Http, HTTP_BINDINGS} from 'angular2/http';
* @Component({selector: 'http-app', viewBindings: [HTTP_BINDINGS]})
* @View({templateUrl: 'people.html'})
Expand Down Expand Up @@ -86,7 +86,7 @@ function mergeOptions(defaultOpts, providedOpts, method, url): RequestOptions {
*
* #Example
*
* ```
* ```typescript
* import {MockBackend, BaseRequestOptions, Http} from 'angular2/http';
* var injector = Injector.resolveAndCreate([
* BaseRequestOptions,
Expand Down
6 changes: 3 additions & 3 deletions modules/angular2/src/http/static_request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ import {
* One such example is when creating services that wrap higher-level services, like {@link Http},
* where it may be useful to generate a `Request` with arbitrary headers and search params.
*
* ```
* ```typescript
* import {Injectable, Injector} from 'angular2/angular2';
* import {HTTP_BINDINGS, Http, Request} from 'angular2/http';
* import {HTTP_BINDINGS, Http, Request, RequestMethods} from 'angular2/http';
*
* @Injectable()
* class AutoAuthenticator {
* constructor(public http:Http) {}
* request(url:string) {
* return this.http.request(new Request({
* method: 0, //GET.
* method: RequestMethods.Get,
* url: url,
* search: 'password=123'
* }));
Expand Down