From 72885fcdbeb03c76136e7c29c224567ff0dc8ef6 Mon Sep 17 00:00:00 2001 From: Jeremy Walker Date: Tue, 21 Jan 2025 12:56:54 +0000 Subject: [PATCH] Fix meridiem typo --- .../projects/time/exercises/digital-clock/introduction.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootcamp_content/projects/time/exercises/digital-clock/introduction.md b/bootcamp_content/projects/time/exercises/digital-clock/introduction.md index cb39ba252a..40a8ab8df9 100644 --- a/bootcamp_content/projects/time/exercises/digital-clock/introduction.md +++ b/bootcamp_content/projects/time/exercises/digital-clock/introduction.md @@ -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: @@ -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