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); }