From d72ec957d148e9145a7bf5f2f66a32932fd598f3 Mon Sep 17 00:00:00 2001 From: Daniel Dias Date: Sat, 27 Aug 2022 21:55:29 -0300 Subject: [PATCH] fix(quiz1): reverting commit that made description incorrect. closes #1169 --- exercises/quiz1.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/quiz1.rs b/exercises/quiz1.rs index d1e76e59..8d05b110 100644 --- a/exercises/quiz1.rs +++ b/exercises/quiz1.rs @@ -5,7 +5,7 @@ // - If // Mary is buying apples. One apple usually costs 2 Rustbucks, but if you buy -// 40 or more at once, each apple only costs 1! Write a function that calculates +// more than 40 at once, each apple only costs 1! Write a function that calculates // the price of an order of apples given the quantity bought. No hints this time! // I AM NOT DONE