From 50815e343211eeef20661d2cf10e05f90da72dff Mon Sep 17 00:00:00 2001 From: muskan-773 Date: Fri, 26 Dec 2025 11:31:59 +0530 Subject: [PATCH] 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". --- exercises/quizzes/quiz1.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/quizzes/quiz1.rs b/exercises/quizzes/quiz1.rs index 04fb2aaf..bf3e5852 100644 --- a/exercises/quizzes/quiz1.rs +++ b/exercises/quizzes/quiz1.rs @@ -5,7 +5,7 @@ // // Mary is buying apples. The price of an apple is calculated as follows: // - An apple costs 2 rustbucks. -// - However, if Mary buys more than 40 apples, the price of each apple in the +// - However, if Mary buys 40 or more 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