From 1e1e55591a55aeb892b8bc1dda23e566292fc742 Mon Sep 17 00:00:00 2001 From: Bhuvansh855 Date: Wed, 27 May 2026 09:27:41 +0530 Subject: [PATCH] fix(material/core): correct createDate JSDoc return description --- src/material/core/datetime/date-adapter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/material/core/datetime/date-adapter.ts b/src/material/core/datetime/date-adapter.ts index 8fb3d8207309..fe74b4a70399 100644 --- a/src/material/core/datetime/date-adapter.ts +++ b/src/material/core/datetime/date-adapter.ts @@ -107,7 +107,7 @@ export abstract class DateAdapter { * @param year The full year of the date. (e.g. 89 means the year 89, not the year 1989). * @param month The month of the date (0-indexed, 0 = January). Must be an integer 0 - 11. * @param date The date of month of the date. Must be an integer 1 - length of the given month. - * @returns The new date, or null if invalid. + * @returns The new date. */ abstract createDate(year: number, month: number, date: number): D;