diff --git a/unit_01/w03d04/homework/to_do_starter/README.md b/unit_01/w03d04/homework/to_do_starter/README.md
index 5a54e86..6646119 100644
--- a/unit_01/w03d04/homework/to_do_starter/README.md
+++ b/unit_01/w03d04/homework/to_do_starter/README.md
@@ -7,7 +7,7 @@
Build a To-Do list app with two columns: one for things to do, and another for things that have been done. Use jQuery to give your app functionality.
### Starter code
-You have the choice to use this OR to start from scratch. If you want to focus straight on jQuery practice portion, feel free to use the starter code. If you don't want to use the starter code and want to practice making an application from scratch, that's okay too, but it will take more time. Budget accordingly!
+You have the choice to use this started code OR to start from scratch. The starter code that we've provided is just some CSS and HTML so that you can see some elements on the page. The .js file is empty. If you want to focus straight on jQuery practice portion, feel free to use the starter code. If you don't want to use the starter code and want to practice making an application from scratch, that's okay too, but it will take more time. Budget accordingly!
### User Stories
@@ -22,9 +22,6 @@ You have the choice to use this OR to start from scratch. If you want to focus s
5. The user should be able to click 'done' on a todo and have it move to the completed column.
4. The user should be able to delete a to-do item from the completed list.
-Hint: jQuery has a useful function that gets whatever the user typed into the input box called `.val()`.
-
-
### Add the jQuery Library
First, add the jQuery library to your project. Go to https://code.jquery.com/ and copy the url of a minified jQuery. Use this url in a script tag in your .html file. Alternatively, go to https://cdnjs.com/ and search for jQuery.
@@ -35,6 +32,20 @@ The commit message should read:
"To Do - Commit 1: Added the jQuery library to my .html"