From 8e56c3cb3037f4dd8ab61cd0cf870457f2c329bf Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Fri, 14 Jul 2017 09:25:16 +0200 Subject: [PATCH] docs: fix type error in HttpClient sample --- 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 3c3a51885f..0761b3b965 100644 --- a/aio/content/guide/http.md +++ b/aio/content/guide/http.md @@ -73,7 +73,7 @@ You can, however, tell `HttpClient` what type the response will be, which is rec To do so, first you define an interface with the correct shape: ```javascript -interface DevelopersResponse { +interface ItemsResponse { results: string[]; } ```