From 61ebf755d766cb113537981b68d7e6d0efa950a2 Mon Sep 17 00:00:00 2001 From: fzyzcjy <5236035+fzyzcjy@users.noreply.github.com> Date: Sat, 8 Jul 2023 01:11:49 +0800 Subject: [PATCH] Tiny one space formatting fix (#130053) You know, I like to see beautiful code, so really hope we have auto formatter, such that all these (at least such formatting error) can be done automatically! --- packages/flutter/lib/src/material/date.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter/lib/src/material/date.dart b/packages/flutter/lib/src/material/date.dart index 8d59527e48d..b6e00827b72 100644 --- a/packages/flutter/lib/src/material/date.dart +++ b/packages/flutter/lib/src/material/date.dart @@ -67,7 +67,7 @@ abstract final class DateUtils { /// /// `date` would be January 15, 2019. /// `futureDate` would be April 1, 2019 since it adds 3 months. - static DateTime addMonthsToMonthDate(DateTime monthDate, int monthsToAdd) { + static DateTime addMonthsToMonthDate(DateTime monthDate, int monthsToAdd) { return DateTime(monthDate.year, monthDate.month + monthsToAdd); }