From 44421049d4a5e7eea990dbc52dea1d334181b9a3 Mon Sep 17 00:00:00 2001 From: Gavin Westwood <31341494+gwestwood@users.noreply.github.com> Date: Fri, 31 Oct 2025 06:51:13 +0000 Subject: [PATCH] Fix typos in README.md Fixing a couple of typos in the text of the README. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4515eb7..cbeb9bc 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ A great tool for testing to see if you are making requests correctly is to use: A great list of public API's can be found here: https://github.com/toddmotto/public-apis -Especially in web development, the ideal way to make a RESTful API request is to d it from the backend using something other than JavaScript. The reason for this is you can't always make a request from the browser because CORS headers are required. Better to use a backend technology such as shell, Python, Ruby, or something else. +Especially in web development, the ideal way to make a RESTful API request is to do it from the backend using something other than JavaScript. The reason for this is you can't always make a request from the browser because CORS headers are required. Better to use a backend technology such as shell, Python, Ruby, or something else. ## Basic GET API Clients The GET method is probably the easiest HTTP method to work with. The following will use the ipify API that simply gives you back your public IP address. Later on we will use some different and unique API's to experiment with. @@ -37,7 +37,7 @@ curl -X GET -H "Content-Type: application/json" https://ghibliapi.herokuapp.com/ If for some reason `curl` is not installed, you can perform `apt-get install curl` to download and install it. ### Python -You can make API request sin Python using the `requests` module. +You can make API requests in Python using the `requests` module. ``` from requests import get