summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorKody Low <kodylow7@gmail.com>2022-08-24 08:33:17 -0700
committerKody Low <kodylow7@gmail.com>2022-08-24 08:33:17 -0700
commitd6e26bb350e423a8f2a90d9405060fdaf9893736 (patch)
treed6648831d595117e63650eeea0fc28b3bf18b9b9 /exercises
parentf6a37e28bac3c46a4c2ed62fd0f1c28f394cf8e3 (diff)
2nd assert is for greater than or equal to, not "more than" like it says in the instructions
Diffstat (limited to 'exercises')
-rw-r--r--exercises/quiz1.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/quiz1.rs b/exercises/quiz1.rs
index 8d05b11..d1e76e5 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
-// more than 40 at once, each apple only costs 1! Write a function that calculates
+// 40 or more 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