From 5adf2191a3cef95357e7c2b5b3cd352e60c062ce Mon Sep 17 00:00:00 2001 From: zanninso Date: Tue, 9 Jul 2024 16:48:59 +0100 Subject: [PATCH] docs: adding more details --- subjects/java/checkpoints/day-of-week/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/subjects/java/checkpoints/day-of-week/README.md b/subjects/java/checkpoints/day-of-week/README.md index abcee5751..843ee8116 100644 --- a/subjects/java/checkpoints/day-of-week/README.md +++ b/subjects/java/checkpoints/day-of-week/README.md @@ -4,6 +4,8 @@ Create a class `DayOfWeekFinder` that provides a method to find the date of the next specified day of the week from a given date. The date will be provided in the format `yyyy-MM-dd`, and the day of the week will be provided as a string (e.g., "Monday", "Tuesday"). +You should return 'Error' in case of any error. + ### Expected Class ```java