From 2a75e2903bd55a54b38a1a51ac65cf8eb9bba658 Mon Sep 17 00:00:00 2001 From: zeref31 <88417235+zeref31@users.noreply.github.com> Date: Tue, 2 May 2023 09:20:01 +0530 Subject: [PATCH] Update 18_fetch_axios.md sentence changed so it makes more sense --- 18_Fetch_And_Axios/18_fetch_axios.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/18_Fetch_And_Axios/18_fetch_axios.md b/18_Fetch_And_Axios/18_fetch_axios.md index 1347430..4855efa 100644 --- a/18_Fetch_And_Axios/18_fetch_axios.md +++ b/18_Fetch_And_Axios/18_fetch_axios.md @@ -277,8 +277,7 @@ ReactDOM.render(, rootElement) Now, let's see how to do the same API call using axios. -How can do fetch if we have multiple API two call ? - +How can we fetch if we have multiple API calls? ## Axios Axios is a third party package and we need to install it using npm. It is the most popular way to make HTTP requests(GET, POST, PUT, PATCH, DELETE). In this example, we will cover only a get request.