diff --git a/src/Utility/AppContextSwitchHelper.cs b/src/Utility/AppContextSwitchHelper.cs
index 34d985290..084717137 100644
--- a/src/Utility/AppContextSwitchHelper.cs
+++ b/src/Utility/AppContextSwitchHelper.cs
@@ -7,16 +7,16 @@ internal static class AppContextSwitchHelper
///
/// Determines if either an AppContext switch or its corresponding Environment Variable is set
///
- /// Name of the AppContext switch.
+ /// Name of the AppContext switch.
/// Name of the Environment variable.
/// If the AppContext switch has been set, returns the value of the switch.
/// If the AppContext switch has not been set, returns the value of the environment variable.
/// False if neither is set.
///
- public static bool GetConfigValue(string appContexSwitchName, string environmentVariableName)
+ public static bool GetConfigValue(string appContextSwitchName, string environmentVariableName)
{
// First check for the AppContext switch, giving it priority over the environment variable.
- if (AppContext.TryGetSwitch(appContexSwitchName, out bool value))
+ if (AppContext.TryGetSwitch(appContextSwitchName, out bool value))
{
return value;
}