From f7a9d2f7e1b8e4cea06fb0361b70b9e65d541f7d Mon Sep 17 00:00:00 2001 From: Abhishek Date: Thu, 4 Apr 2024 16:44:18 +0530 Subject: [PATCH] Remove hardcoded year 2023 in the anniversary date task description for Booking Up For Beauty Exercise --- exercises/concept/booking-up-for-beauty/.docs/instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/booking-up-for-beauty/.docs/instructions.md b/exercises/concept/booking-up-for-beauty/.docs/instructions.md index 7c0e1e0de..985e38106 100644 --- a/exercises/concept/booking-up-for-beauty/.docs/instructions.md +++ b/exercises/concept/booking-up-for-beauty/.docs/instructions.md @@ -49,5 +49,5 @@ Implement the `AppointmentScheduler.getAnniversaryDate()` method that returns th ```java AppointmentScheduler scheduler = new AppointmentScheduler(); scheduler.getAnniversaryDate() -// => LocalDate.of(2023, 9, 15) +// => LocalDate.of(, 9, 15) ```