diff --git a/output/info202_labs.html b/output/info202_labs.html
index 300d949..b375605 100644
--- a/output/info202_labs.html
+++ b/output/info202_labs.html
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:e563eb356fa3d65871f174619e1090ff22995098b77884d5de01385cbda37963
-size 4759078
+oid sha256:e2761399c728c03667341730507c73774e23a5a6f7a18a6343d8950cb7c631e8
+size 4759118
diff --git a/tiddlers/content/labs/lab06/_Labs_06_Checklist.md b/tiddlers/content/labs/lab06/_Labs_06_Checklist.md
index e498c24..c230286 100644
--- a/tiddlers/content/labs/lab06/_Labs_06_Checklist.md
+++ b/tiddlers/content/labs/lab06/_Labs_06_Checklist.md
@@ -22,10 +22,11 @@
* A collections-based DAO (you only need a single `Map` for this DAO).
* A JDBI-based persistent DAO interface.
- * This DAO should contain three methods:
+ * This DAO should contain four methods:
* A method for saving a new `Customer`.
* A method for checking if a given `username` and `password` matches an existing customer.
* A method for retrieving a customer via their `username`.
+ * A method for removing a customer.
* You should also add a `getCustomerDAO` method to the existing `JdbiDaoFactory` class that returns an instance of the customer JDBI DAO as shown in this lab. Copy and adapt the existing `getProductDAO` method.