diff --git a/KeeTrayTOTP/FormSettings.Designer.cs b/KeeTrayTOTP/FormSettings.Designer.cs index 3fd821f..d88db4a 100644 --- a/KeeTrayTOTP/FormSettings.Designer.cs +++ b/KeeTrayTOTP/FormSettings.Designer.cs @@ -249,7 +249,7 @@ private void InitializeComponent() // // CheckBoxTOTPColumnClipboard // - this.HelpProviderSettings.SetHelpString(this.CheckBoxTOTPColumnClipboard, "Controls weither or not when you double-click on the TOTP Column in the entry lis" + + this.HelpProviderSettings.SetHelpString(this.CheckBoxTOTPColumnClipboard, "Controls whether or not when you double-click on the TOTP Column in the entry lis" + "t KeePass will copy the generated TOTP to the clipboard."); this.CheckBoxTOTPColumnClipboard.Location = new System.Drawing.Point(19, 70); this.CheckBoxTOTPColumnClipboard.Name = "CheckBoxTOTPColumnClipboard"; diff --git a/KeeTrayTOTP/Libraries/TimeCorrectionProvider.cs b/KeeTrayTOTP/Libraries/TimeCorrectionProvider.cs index fa268cc..b7470ba 100644 --- a/KeeTrayTOTP/Libraries/TimeCorrectionProvider.cs +++ b/KeeTrayTOTP/Libraries/TimeCorrectionProvider.cs @@ -20,7 +20,7 @@ public class TimeCorrectionProvider private bool _enable; /// - /// Defines weither or not the class will attempt to get time correction from the server. + /// Defines whether or not the class will attempt to get time correction from the server. /// public bool Enable { get { return _enable; } set { _enable = value; _timer.Enabled = value; } }