From 43ff24e088f0c4838cce30e9e564ed364838324a Mon Sep 17 00:00:00 2001 From: "Chan-Min, Kim" Date: Fri, 14 Aug 2020 23:09:57 +0900 Subject: [PATCH] [Typo Correction] - "fetch" solution typo error fixed typo - "arrray" to "array" --- 5-network/01-fetch/01-fetch-users/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/5-network/01-fetch/01-fetch-users/solution.md b/5-network/01-fetch/01-fetch-users/solution.md index b8dfb62a..3cb88e4e 100644 --- a/5-network/01-fetch/01-fetch-users/solution.md +++ b/5-network/01-fetch/01-fetch-users/solution.md @@ -3,7 +3,7 @@ To fetch a user we need: `fetch('https://api.github.com/users/USERNAME')`. If the response has status `200`, call `.json()` to read the JS object. -Otherwise, if a `fetch` fails, or the response has non-200 status, we just return `null` in the resulting arrray. +Otherwise, if a `fetch` fails, or the response has non-200 status, we just return `null` in the resulting array. So here's the code: