From 849d7a3ae1aa858db8547972091b5b6498ce2903 Mon Sep 17 00:00:00 2001 From: Vim Shah Date: Thu, 22 Aug 2019 16:13:24 -0700 Subject: [PATCH] Update task.md fix typo --- 5-network/01-fetch/01-fetch-users/task.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/5-network/01-fetch/01-fetch-users/task.md b/5-network/01-fetch/01-fetch-users/task.md index 4b42dd9e..4605b495 100644 --- a/5-network/01-fetch/01-fetch-users/task.md +++ b/5-network/01-fetch/01-fetch-users/task.md @@ -1,8 +1,8 @@ # Fetch users from GitHub -Create an async function `getUsers(names)`, that gets an array of GitHub logins, fetche the users from GitHub and returns an array of GitHub users. +Create an async function `getUsers(names)`, that gets an array of GitHub logins, fetches the users from GitHub and returns an array of GitHub users. -The GitHub url with user informaiton for the given `USERNAME` is: `https://api.github.com/users/USERNAME`. +The GitHub url with user information for the given `USERNAME` is: `https://api.github.com/users/USERNAME`. There's a test example in the sandbox.