Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update instructions.md with a note #2612

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions exercises/concept/freelancer-rates/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Copy link
Member

@SleeplessByte SleeplessByte Mar 5, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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.

Perhaps like this?

  • ==xxx== means nothing in Markdown, but xxx will format it as monospace (code)
  • Each sentence should be on a new line, even though that's not followed everywhere in this file. We did not have a styleguide when this exercise was written!
  • If you accept this proposal, you can press the Commit suggestion button and it will do it for you.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Erz3 Did you have time to look into this proposal? Seems okay to me.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, It's look fine.

@SleeplessByte Where could I find "Commit suggestion" button? I just saw "close pull request" at the bottom.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

image

Do you see this @Erz3 ?

~~~~

## 1. Calculate the day rate given an hourly rate

A client contacts the freelancer to enquire about their rates.
Expand Down
Loading