docs: fix type error in HttpClient sample

This commit is contained in:
cexbrayat 2017-07-14 09:25:16 +02:00 committed by Alex Rickabaugh
parent 7955cacec4
commit 8e56c3cb30
1 changed files with 1 additions and 1 deletions

View File

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