Unverified Commit 61ebf755 authored by fzyzcjy's avatar fzyzcjy Committed by GitHub

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!
parent 93732892
...@@ -67,7 +67,7 @@ abstract final class DateUtils { ...@@ -67,7 +67,7 @@ abstract final class DateUtils {
/// ///
/// `date` would be January 15, 2019. /// `date` would be January 15, 2019.
/// `futureDate` would be April 1, 2019 since it adds 3 months. /// `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); return DateTime(monthDate.year, monthDate.month + monthsToAdd);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment