From ada486a1ddd1296b83459fb618c352811b646c63 Mon Sep 17 00:00:00 2001 From: Rafael Date: Sat, 9 Sep 2017 18:51:16 -0300 Subject: [PATCH] docs: fix typos in 'Httpclient' docs (#19127) PR Close #19127 --- packages/common/http/src/client.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/common/http/src/client.ts b/packages/common/http/src/client.ts index 0d26fc0461..bdcff69ce6 100644 --- a/packages/common/http/src/client.ts +++ b/packages/common/http/src/client.ts @@ -917,7 +917,7 @@ export class HttpClient { }): Observable; /** - * Construct a GET request which interprets the body as an `ArrayBuffer` and returns the full event stream. + * Construct a HEAD request which interprets the body as an `ArrayBuffer` and returns the full event stream. * * @return an `Observable` of all `HttpEvent`s for the request, with a body type of `ArrayBuffer`. */ @@ -1151,7 +1151,7 @@ export class HttpClient { }): Observable; /** - * Construct a OPTIONS request which interprets the body as text and returns it. + * Construct an OPTIONS request which interprets the body as text and returns it. * * @return an `Observable` of the body as a `string`. */ @@ -1598,7 +1598,7 @@ export class HttpClient { }): Observable; /** - * Construct a PATCH request which interprets the body as an `ArrayBuffer` and returns the full event stream. + * Construct a POST request which interprets the body as an `ArrayBuffer` and returns the full event stream. * * @return an `Observable` of all `HttpEvent`s for the request, with a body type of `ArrayBuffer`. */