diff --git a/unit_02/w05d02/homework/README.md b/unit_02/w05d02/homework/README.md
index dec81e6..b89115f 100644
--- a/unit_02/w05d02/homework/README.md
+++ b/unit_02/w05d02/homework/README.md
@@ -23,18 +23,18 @@ Prerequisites: Javascript
* Practice creating custom routes.
* Practice using parameters from a request.
-
-
####Tonight you will be using your new found skills to create three separate Express apps.
-__________________________________________________________
-__________________________________________________________
#Tip Calculator APP
-- Create an express application.
-- Your app should have a route of `'/tip'` and it should expect 2 params. One of which should be `total` and one should be `tipPercentage`.
-- When hitting the route the page should display how much you tip will be based on the total ammount of the bill and the tip percentage. (ex. hitting `'/tip/100/20'` should display `20` on the page).
+- Create an express application (see the bottom of this homework for a reminder).
+- Your app should have a route of `'/tip'` and it should expect *2 params*. One should be `total` and one should be `tipPercentage`.
+- When hitting the route, the page should *display how much your tip will be* based on the total ammount of the bill and the tip percentage. (ex. hitting `'/tip/100/20'` should display `20` on the page).
+**Commit 1**
+