From 620c253307e792d7410450e96d33d759d9137838 Mon Sep 17 00:00:00 2001 From: Rudy Huyn Date: Mon, 18 Mar 2019 08:34:41 -0700 Subject: [PATCH] Change comment --- src/CalcViewModel/DateCalculatorViewModel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CalcViewModel/DateCalculatorViewModel.cpp b/src/CalcViewModel/DateCalculatorViewModel.cpp index 655d1cd3..87ec640f 100644 --- a/src/CalcViewModel/DateCalculatorViewModel.cpp +++ b/src/CalcViewModel/DateCalculatorViewModel.cpp @@ -54,7 +54,7 @@ DateCalculatorViewModel::DateCalculatorViewModel() : m_dateCalcEngine = make_shared(localizationSettings.GetCalendarIdentifier()); // Initialize dates of DatePicker controls to today's date auto calendar = ref new Calendar(); - // We force the timezone to UTC, to be sure to not being affected by Daylight Saving Time + // We force the timezone to UTC, in order to avoid being affected by Daylight Saving Time // when we calculate the difference between 2 dates. calendar->ChangeTimeZone("UTC"); auto today = calendar->GetDateTime();