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[]; } ```