diff --git a/docs/en/02_Developer_Guides/03_Forms/Field_types/02_DateField.md b/docs/en/02_Developer_Guides/03_Forms/Field_types/02_DateField.md index 71946f46f..40d761fb0 100644 --- a/docs/en/02_Developer_Guides/03_Forms/Field_types/02_DateField.md +++ b/docs/en/02_Developer_Guides/03_Forms/Field_types/02_DateField.md @@ -56,11 +56,11 @@ strtotime()). ## Separate Day / Month / Year Fields -To display separate input fields for day, month and year separately you can use the `DateFieldSeparated` subclass`. +To display separate input fields for day, month and year separately you can use the `SeparatedDateField` subclass`. HTML5 placeholders 'day', 'month' and 'year' are enabled by default. :::php - DateFieldSeparated::create('MyDate'); + SeparatedDateField::create('MyDate');
Any custom date format settings will be ignored.