From 1bfa43a40f997d1b94a8d764970ecb53dd0d1fb9 Mon Sep 17 00:00:00 2001
From: Rakshit Sinha <rakshit.sinha@oracle.com>
Date: Mon, 5 Jul 2021 16:36:33 -0700
Subject: [PATCH] chore: Updated quiz1.rs question description

---
 exercises/quiz1.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/exercises/quiz1.rs b/exercises/quiz1.rs
index 5c5c355..b0af66c 100644
--- a/exercises/quiz1.rs
+++ b/exercises/quiz1.rs
@@ -5,7 +5,7 @@
 
 // Mary is buying apples. One apple usually costs 2 Rustbucks, but if you buy
 // more than 40 at once, each apple only costs 1! Write a function that calculates
-// the price of an order of apples given the order amount. No hints this time!
+// the price of an order of apples given the quantity bought. No hints this time!
 
 // I AM NOT DONE