diff --git a/08_lisp.html b/08_lisp.html
index 93d4ccd..1c44928 100644
--- a/08_lisp.html
+++ b/08_lisp.html
@@ -155,7 +155,7 @@
Lists in lisp and Scheme
all the algorithms we want to use.
So we are going to add a 4th operation:
-
+
free
: manually release/free a pair.
diff --git a/08_lisp.md b/08_lisp.md
index fafaedb..8f09d4c 100644
--- a/08_lisp.md
+++ b/08_lisp.md
@@ -22,8 +22,9 @@ We don't want garbage collection for
all the algorithms we want to use.
So we are going to add a 4th operation:
-4. `free`: manually release/free a pair.
-
+
+free
: manually release/free a pair.
+
What we want to do is muck around with lists.
Meaning you can insert items in the middle, change pointers, connect this and that.
@@ -389,5 +390,3 @@ simply by attaching the end of our list to the free list.
## Code
- [list_pool.h](code/list_pool.h)
-
-