From 4bef0a7936e9bcfde7fa4b03331f35977c47a45d Mon Sep 17 00:00:00 2001 From: Carl Date: Fri, 11 Aug 2023 18:21:47 +0200 Subject: [PATCH] Fixed instructions --- exercises/concept/freelancer-rates/.docs/instructions.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/exercises/concept/freelancer-rates/.docs/instructions.md b/exercises/concept/freelancer-rates/.docs/instructions.md index 8c574dee0..6bc54b323 100644 --- a/exercises/concept/freelancer-rates/.docs/instructions.md +++ b/exercises/concept/freelancer-rates/.docs/instructions.md @@ -44,7 +44,8 @@ Implement the function `workdaysIn(budget:hourlyRate:withDiscount:)`, that takes - `budget` which holds the budget for the project. - `hourlyRate` which holds the freelancers hourly rate. - `withDiscount` which holds the discount the freelancer is willing to give to the client. -The function should return the number of workdays the freelancer will work on the project rounded up. + +The function should return the number of workdays the freelancer will work on the project rounded down. ```swift workdaysIn(budget: 20000, hourlyRate: 80, withDiscount: 11.0)