From 01f6210bf5fd18e30aa04dbace93b33733522bae Mon Sep 17 00:00:00 2001
From: fubar1337 <133132398+fubar1337@users.noreply.github.com>
Date: Wed, 10 May 2023 18:42:50 +0200
Subject: [PATCH] Update IF LOGIC PRE API.md
---
challenges/IF LOGIC PRE API.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/challenges/IF LOGIC PRE API.md b/challenges/IF LOGIC PRE API.md
index 3e85bb2..ee6354a 100644
--- a/challenges/IF LOGIC PRE API.md
+++ b/challenges/IF LOGIC PRE API.md
@@ -1,6 +1,6 @@
## Thursday Warmup!
-
+
We learned about Python "IF LOGIC" the other day, and I can't wait to see the projects you folks made! As a warmup this morning, please copy the following code to your IDE of choice:
@@ -27,7 +27,7 @@ main()
Let's pretend that the function `apigrabber()` is fetching data for us from an online source (a RESTful API). We can tell whether the response we get back from the API is good or not by its **HTTP response**. Even if you've never worked with APIs before, you've surely gotten a `404` error on a website, right? A `404` response most likely means you typed in the wrong address, like *facebool.com* or *gooogle.com*.
-[Click here for an adorable guide to HTTP Status Codes!](https://httpstatusdogs.com/)
+[Click here for an adorable guide to HTTP Status Codes!](https://http.dog/)
### OBJECTIVE: