From 41c00d6be0d8bc80f5633ccbce53436337d286fa Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Wed, 6 Mar 2019 21:11:43 -0500 Subject: [PATCH] spelling: preferences --- src/CalcViewModel/UnitConverterViewModel.cpp | 4 ++-- src/CalcViewModel/UnitConverterViewModel.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/CalcViewModel/UnitConverterViewModel.cpp b/src/CalcViewModel/UnitConverterViewModel.cpp index 93605309..c5df49a0 100644 --- a/src/CalcViewModel/UnitConverterViewModel.cpp +++ b/src/CalcViewModel/UnitConverterViewModel.cpp @@ -674,7 +674,7 @@ void UnitConverterViewModel::Deserialize(Platform::String^ state) RaisePropertyChanged(nullptr); // Update since all props have been updated. } -//Saving User Prefernces of Category and Associated-Units across Sessions. +//Saving User Preferences of Category and Associated-Units across Sessions. void UnitConverterViewModel::SaveUserPreferences() { if (UnitsAreValid()) @@ -695,7 +695,7 @@ void UnitConverterViewModel::SaveUserPreferences() } } -//Restoring User Prefernces of Category and Associated-Units. +//Restoring User Preferences of Category and Associated-Units. void UnitConverterViewModel::RestoreUserPreferences() { if (!IsCurrencyCurrentCategory) diff --git a/src/CalcViewModel/UnitConverterViewModel.h b/src/CalcViewModel/UnitConverterViewModel.h index ec8312f5..baabd860 100644 --- a/src/CalcViewModel/UnitConverterViewModel.h +++ b/src/CalcViewModel/UnitConverterViewModel.h @@ -243,7 +243,7 @@ namespace CalculatorApp Platform::String^ Serialize(); void Deserialize(Platform::String^ state); - //Saving And Restoring User Prefernces of Category and Associated-Units across Sessions. + //Saving And Restoring User Preferences of Category and Associated-Units across Sessions. void SaveUserPreferences(); void RestoreUserPreferences();