From 843681d3bb7976d77d3b83ed6d01a2ad1f7ea087 Mon Sep 17 00:00:00 2001 From: Quincy Larson Date: Tue, 26 May 2015 18:57:47 -0700 Subject: [PATCH] fixes #568 --- seed_data/challenges/advanced-bonfires.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed_data/challenges/advanced-bonfires.json b/seed_data/challenges/advanced-bonfires.json index 50829b7473..570194a408 100644 --- a/seed_data/challenges/advanced-bonfires.json +++ b/seed_data/challenges/advanced-bonfires.json @@ -77,7 +77,7 @@ }, { "_id": "aa2e6f85cab2ab736c9a9b24", - "name": "Bonfire: Cash Register", + "name": "Bonfire: Exact Change", "difficulty": "4.03", "description": [ "Design a cash register drawer function that accepts purchase price as the first argument, payment as the second argument, and cash-in-drawer (cid) as the third argument.", "cid is a 2d array listing available currency.", "Return the string \"Insufficient Funds\" if cash-in-drawer is less than the change due. Return the string \"Closed\" if cash-in-drawer is equal to the change due.", "Otherwise, return change in coin and bills, sorted in highest to lowest order.",