From 8b04b8e0402d5c39d1aec074dd13680625aaac14 Mon Sep 17 00:00:00 2001 From: NachoNav Date: Thu, 7 Mar 2019 02:34:13 +0100 Subject: [PATCH] Missing periods. Some comment formatting inconsistency. --- src/Calculator/Views/Calculator.xaml.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Calculator/Views/Calculator.xaml.cpp b/src/Calculator/Views/Calculator.xaml.cpp index d8ae99c9..7ebade93 100644 --- a/src/Calculator/Views/Calculator.xaml.cpp +++ b/src/Calculator/Views/Calculator.xaml.cpp @@ -238,8 +238,8 @@ void Calculator::AnimateCalculator(bool resultAnimate) m_resultAnimate = resultAnimate; if (((m_isLastAnimatedInScientific && IsScientific) || (!m_isLastAnimatedInScientific && !IsScientific)) && ((m_isLastAnimatedInProgrammer && IsProgrammer) || (!m_isLastAnimatedInProgrammer && !IsProgrammer))) { - // We are forcing the animation here - // It's because if last animation was in standard, then go to unit converter, then comes back to standard + // We are forcing the animation here. + // It's because if last animation was in standard, then go to unit converter, then comes back to standard. // The state for the calculator does not change and the animation would not get run. this->OnStoryboardCompleted(nullptr, nullptr); }