From 18de508e88a4b51436fc68c186eb1591c986d21e Mon Sep 17 00:00:00 2001
From: William Burton <13026711+burtonwilliamt@users.noreply.github.com>
Date: Sun, 26 Mar 2023 22:03:28 -0400
Subject: [PATCH] Fix broken link to example.py in unit 7.04
---
changelog.md | 6 ++++++
docs/changelog.md.html | 6 ++++++
docs/units/7_unit/04_lesson/lab.md.html | 4 +---
units/7_unit/04_lesson/lab.md | 4 +---
4 files changed, 14 insertions(+), 6 deletions(-)
diff --git a/changelog.md b/changelog.md
index b4d29fbd5..863b28f2d 100644
--- a/changelog.md
+++ b/changelog.md
@@ -4,6 +4,12 @@
-----------------
+### 3/26/2023
+
+* 7.04 - Fixed broken example code link for lab (similar to #400)
+
+-----------------
+
### 5/16/2022
* 7.05 - Fixed broken sample code link for project (Issues #380 and #398)
diff --git a/docs/changelog.md.html b/docs/changelog.md.html
index 18b4717c9..865394e10 100644
--- a/docs/changelog.md.html
+++ b/docs/changelog.md.html
@@ -13,6 +13,12 @@
-----------------
+### 3/26/2023
+
+* 7.04 - Fixed broken example code link for lab (similar to #400)
+
+-----------------
+
### 5/16/2022
* 7.05 - Fixed broken sample code link for project (Issues #380 and #398)
diff --git a/docs/units/7_unit/04_lesson/lab.md.html b/docs/units/7_unit/04_lesson/lab.md.html
index 074543d10..d5329e6a2 100644
--- a/docs/units/7_unit/04_lesson/lab.md.html
+++ b/docs/units/7_unit/04_lesson/lab.md.html
@@ -11,7 +11,7 @@
## Overview
-Given the following [Sample Code], practice using inheritance to create specific child classes for different types of `Pokemon`.
+Given the following [Sample Code](https://github.com/TEALSK12/2nd-semester-introduction-to-computer-science/blob/master/units/7_unit/04_lesson/example.py), practice using inheritance to create specific child classes for different types of `Pokemon`.
### Create the three child classes below
@@ -43,6 +43,4 @@
isinstance(my_pet, Dog) # returns false
```
-[Sample Code]: https://teals-introcs.gitbooks.io/2nd-semester-introduction-to-computer-science-pri/content/units/7_unit/04_lesson/example.py
-
diff --git a/units/7_unit/04_lesson/lab.md b/units/7_unit/04_lesson/lab.md
index 0867b7120..78e5b3caf 100644
--- a/units/7_unit/04_lesson/lab.md
+++ b/units/7_unit/04_lesson/lab.md
@@ -2,7 +2,7 @@
## Overview
-Given the following [Sample Code], practice using inheritance to create specific child classes for different types of `Pokemon`.
+Given the following [Sample Code](https://github.com/TEALSK12/2nd-semester-introduction-to-computer-science/blob/master/units/7_unit/04_lesson/example.py), practice using inheritance to create specific child classes for different types of `Pokemon`.
### Create the three child classes below
@@ -33,5 +33,3 @@ my_pet = Pet()
isinstance(my_pet, Pet) # returns true
isinstance(my_pet, Dog) # returns false
```
-
-[Sample Code]: https://teals-introcs.gitbooks.io/2nd-semester-introduction-to-computer-science-pri/content/units/7_unit/04_lesson/example.py