From 47bbfdf7d5b9afd88502852e539431152b611b12 Mon Sep 17 00:00:00 2001 From: amin Date: Tue, 16 Jul 2024 11:46:08 +0100 Subject: [PATCH] docs: fix typos --- subjects/java/checkpoints/date-formatter/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/java/checkpoints/date-formatter/README.md b/subjects/java/checkpoints/date-formatter/README.md index 7db7898ad..2b37a1779 100644 --- a/subjects/java/checkpoints/date-formatter/README.md +++ b/subjects/java/checkpoints/date-formatter/README.md @@ -10,7 +10,7 @@ Write a class `DateFormatter` that has three private attributes: Create getters for all the attributes and setters for `date` and `format`. The conversion should happen when you set the `format` or the `date`. If the `format` is not correct, the conversion shouldn't happen. Additionally, create methods to output the date in the specified `format`, and constructors with only the `date`, with `date` and `format`, and a default constructor. -The default date is the current date, and the format as follows `DD/MM/YYYY`, The format is case insesitive +The default date is the current date, and the format as follows `DD/MM/YYYY`. The format is case insensitive > Using standard library to convert UNIX time to date and to get date component is allowed.