summaryrefslogtreecommitdiff
path: root/exercises/quizzes
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-07-05 15:38:33 +0200
committermo8it <mo8it@proton.me>2024-07-05 15:38:33 +0200
commitf5a4965de7174e122c5d99ec0a300285d0a0c658 (patch)
tree848612b229f63dbc60a7cf02129b9e1a1a942760 /exercises/quizzes
parentdb5911eb739d79c9b6fd44a510d77c6b80f49368 (diff)
Improve wording in quiz1
Diffstat (limited to 'exercises/quizzes')
-rw-r--r--exercises/quizzes/quiz1.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/exercises/quizzes/quiz1.rs b/exercises/quizzes/quiz1.rs
index afbf1f9..a79a162 100644
--- a/exercises/quizzes/quiz1.rs
+++ b/exercises/quizzes/quiz1.rs
@@ -5,7 +5,8 @@
//
// Mary is buying apples. The price of an apple is calculated as follows:
// - An apple costs 2 rustbucks.
-// - If Mary buys more than 40 apples, each apple only costs 1 rustbuck!
+// - However, if Mary buys more than 40 apples, the price of each apple in the
+// entire order is reduced to only 1 rustbuck!
// TODO: Write a function that calculates the price of an order of apples given
// the quantity bought.