diff options
| author | Damian <54457902+dbednar230@users.noreply.github.com> | 2021-08-24 03:48:51 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-24 10:48:51 +0200 |
| commit | 03131a3d35d9842598150f9da817f7cc26e2669a (patch) | |
| tree | 4cf6465172307f2481d803da3721781575e49bfc | |
| parent | df25684cb79f8413915e00b5efef29369849cef1 (diff) | |
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
| -rw-r--r-- | exercises/quiz1.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/quiz1.rs b/exercises/quiz1.rs index 3af1293..985cd97 100644 --- a/exercises/quiz1.rs +++ b/exercises/quiz1.rs @@ -4,7 +4,7 @@ // - Functions // 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 |
