Skip to content

Commit 50815e3

Browse files
authored
Fix wording in quiz1 to match test condition
This change updates the wording in quiz1 to match the test logic. The condition now correctly states "40 or more apples" instead of "more than 40".
1 parent 7850a73 commit 50815e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/quizzes/quiz1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//
66
// Mary is buying apples. The price of an apple is calculated as follows:
77
// - An apple costs 2 rustbucks.
8-
// - However, if Mary buys more than 40 apples, the price of each apple in the
8+
// - However, if Mary buys 40 or more apples, the price of each apple in the
99
// entire order is reduced to only 1 rustbuck!
1010

1111
// TODO: Write a function that calculates the price of an order of apples given

0 commit comments

Comments
 (0)