From e01548d598cc08f769baf604f65d1c5e6b355675 Mon Sep 17 00:00:00 2001 From: elizabeth shell Date: Sat, 12 Sep 2015 16:30:16 -0400 Subject: [PATCH] changed tip amount to 25% --- tip.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tip.js b/tip.js index 9150333..4203dd4 100644 --- a/tip.js +++ b/tip.js @@ -1,6 +1,6 @@ "use strict"; function calculateTip(baseAmount) { - return (.2 * baseAmount); + return (.25 * baseAmount); }