diff --git a/changelog.md b/changelog.md
index b4d29fbd..863b28f2 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 18b4717c..865394e1 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 074543d1..d5329e6a 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 0867b712..78e5b3ca 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