Skip to content

Commit

Permalink
Fix meridiem typo
Browse files Browse the repository at this point in the history
  • Loading branch information
iHiD committed Jan 21, 2025
1 parent e564417 commit 72885fc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ In this first exercise you're going to use two new functions that we've given Ji

Your job is to update a digital clock based on whatever numbers those functions give back.

The digital clock expects the numbers to be in a 12 hour format with an `am` or `pm` (what's called the "meridien").
The digital clock expects the numbers to be in a 12 hour format with an `am` or `pm` (what's called the "meridiem").

So for example:

Expand All @@ -18,7 +18,7 @@ So for example:
19:45 -> 7:45pm
```

To display the time on the clock you use the `display_time(hour, minutes, meridien)` function.
To display the time on the clock you use the `display_time(hour, minutes, meridiem)` function.

## Scenarios

Expand Down

0 comments on commit 72885fc

Please sign in to comment.