From 36e37a08857cb751ce030bd52a42ff019ef6ff75 Mon Sep 17 00:00:00 2001 From: Rob Bos Date: Mon, 9 Oct 2023 07:07:26 +0200 Subject: [PATCH] Fix typo (#2670) * Fix typo * Remove double space --- src/Misc/layoutroot/run-helper.cmd.template | 2 +- src/Runner.Listener/Configuration/CredentialManager.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Misc/layoutroot/run-helper.cmd.template b/src/Misc/layoutroot/run-helper.cmd.template index 23e42467bd0..221e8b1c024 100644 --- a/src/Misc/layoutroot/run-helper.cmd.template +++ b/src/Misc/layoutroot/run-helper.cmd.template @@ -2,7 +2,7 @@ SET UPDATEFILE=update.finished "%~dp0\bin\Runner.Listener.exe" run %* -rem using `if %ERRORLEVEL% EQU N` insterad of `if ERRORLEVEL N` +rem using `if %ERRORLEVEL% EQU N` instead of `if ERRORLEVEL N` rem `if ERRORLEVEL N` means: error level is N or MORE if %ERRORLEVEL% EQU 0 ( diff --git a/src/Runner.Listener/Configuration/CredentialManager.cs b/src/Runner.Listener/Configuration/CredentialManager.cs index d480dac9c54..f13fb120778 100644 --- a/src/Runner.Listener/Configuration/CredentialManager.cs +++ b/src/Runner.Listener/Configuration/CredentialManager.cs @@ -46,7 +46,7 @@ public VssCredentials LoadCredentials() if (!store.HasCredentials()) { - throw new InvalidOperationException("Credentials not stored. Must reconfigure."); + throw new InvalidOperationException("Credentials not stored. Must reconfigure."); } CredentialData credData = store.GetCredentials();