From 0a09fb1432a9c97717493bad0897cdcb6d33ad0e Mon Sep 17 00:00:00 2001 From: Amadou Sall Date: Tue, 27 Aug 2019 23:45:50 +0200 Subject: [PATCH] docs: fix a minor typo in the HTTP guide (#32359) "of typed" should be "of type" PR Close #32359 --- 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 1ce150f8b5..0c132b804f 100644 --- a/aio/content/guide/http.md +++ b/aio/content/guide/http.md @@ -155,7 +155,7 @@ Tell `HttpClient` that you want the full response with the `observe` option: region="getConfigResponse"> -Now `HttpClient.get()` returns an `Observable` of typed `HttpResponse` rather than just the JSON data. +Now `HttpClient.get()` returns an `Observable` of type `HttpResponse` rather than just the JSON data. The component's `showConfigResponse()` method displays the response headers as well as the configuration: