docs: fix typos

This commit is contained in:
amin 2024-07-16 11:46:08 +01:00 committed by zanninso
parent 351c4bc3bd
commit 47bbfdf7d5
1 changed files with 1 additions and 1 deletions

View File

@ -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.