From 835af4f46af61d0818f6552f9dd1604040ae2601 Mon Sep 17 00:00:00 2001 From: Erz3 <77393537+Erz3@users.noreply.github.com> Date: Wed, 5 Mar 2025 19:08:21 +0000 Subject: [PATCH 1/3] Update instructions.md with a note Added note to clarify "ratePerHour" and "dayRate" meaning. --- exercises/concept/freelancer-rates/.docs/instructions.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/exercises/concept/freelancer-rates/.docs/instructions.md b/exercises/concept/freelancer-rates/.docs/instructions.md index 57dd98beeb..b7bc633bd2 100644 --- a/exercises/concept/freelancer-rates/.docs/instructions.md +++ b/exercises/concept/freelancer-rates/.docs/instructions.md @@ -2,6 +2,10 @@ In this exercise you will be writing code to help a freelancer communicate with their clients about the prices of certain projects. You will write a few utility functions to quickly calculate the costs for the clients. +~~~~exercism/note +In the next tasks, the ==ratePerHour== variable and the ==dayRate== function are related to money. The units of measurement are money for a unit of time (hours and days respectively). +~~~~ + ## 1. Calculate the day rate given an hourly rate A client contacts the freelancer to enquire about their rates. From f19f8505b9b8ba8c6777e8f972e3e36087961b83 Mon Sep 17 00:00:00 2001 From: Erz3 <77393537+Erz3@users.noreply.github.com> Date: Wed, 23 Apr 2025 16:41:30 +0100 Subject: [PATCH 2/3] Update exercises/concept/freelancer-rates/.docs/instructions.md Markdown and style improvement. Co-authored-by: Derk-Jan Karrenbeld --- 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 b7bc633bd2..26076d0bdf 100644 --- a/exercises/concept/freelancer-rates/.docs/instructions.md +++ b/exercises/concept/freelancer-rates/.docs/instructions.md @@ -3,7 +3,8 @@ In this exercise you will be writing code to help a freelancer communicate with their clients about the prices of certain projects. You will write a few utility functions to quickly calculate the costs for the clients. ~~~~exercism/note -In the next tasks, the ==ratePerHour== variable and the ==dayRate== function are related to money. The units of measurement are money for a unit of time (hours and days respectively). +The `ratePerHour` variable and the `dayRate` function are related to money. +The units of measurement are money for a unit of time: hours and days respectively. ~~~~ ## 1. Calculate the day rate given an hourly rate From 13816f3221671a4333759601079bb6156ae12ea4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 23 Apr 2025 15:48:49 +0000 Subject: [PATCH 3/3] [CI] Format code --- exercises/concept/freelancer-rates/.docs/instructions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/concept/freelancer-rates/.docs/instructions.md b/exercises/concept/freelancer-rates/.docs/instructions.md index 26076d0bdf..fab57d50bb 100644 --- a/exercises/concept/freelancer-rates/.docs/instructions.md +++ b/exercises/concept/freelancer-rates/.docs/instructions.md @@ -2,10 +2,10 @@ In this exercise you will be writing code to help a freelancer communicate with their clients about the prices of certain projects. You will write a few utility functions to quickly calculate the costs for the clients. -~~~~exercism/note +```exercism/note The `ratePerHour` variable and the `dayRate` function are related to money. The units of measurement are money for a unit of time: hours and days respectively. -~~~~ +``` ## 1. Calculate the day rate given an hourly rate