Skip to content

Commit 03131a3

Browse files
authored
fix(quiz1): Fix inconsistent wording (#826)
The second test expects the function to return 80 when there is an order of 40 apples, but the current wording implies returning 40 will pass as well
1 parent df25684 commit 03131a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/quiz1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// - Functions
55

66
// Mary is buying apples. One apple usually costs 2 Rustbucks, but if you buy
7-
// more than 40 at once, each apple only costs 1! Write a function that calculates
7+
// 40 or more at once, each apple only costs 1! Write a function that calculates
88
// the price of an order of apples given the quantity bought. No hints this time!
99

1010
// I AM NOT DONE

0 commit comments

Comments
 (0)