Bug Description
The method FormatEnvirnomentVariables in StringHelper has a typo — "Envirnoment" instead of "Environment" (missing 'o'). The method is actively used in MainViewModel.cs, so this typo propagates to the call site as well.
Actual Behavior
// StringHelper.cs
public static string FormatEnvirnomentVariables(string input)
// ^^^^^^^^^^^ typo: should be "Environment"
// MainViewModel.cs (caller)
StringHelper.FormatEnvirnomentVariables(...)
Suggested Fix
Rename to FormatEnvironmentVariables and update all call sites:
public static string FormatEnvironmentVariables(string input)
Environment
- File:
src/Servy.Core/Helpers/StringHelper.cs
- Caller:
src/Servy/ViewModels/MainViewModel.cs
Bug Description
The method
FormatEnvirnomentVariablesinStringHelperhas a typo — "Envirnoment" instead of "Environment" (missing 'o'). The method is actively used inMainViewModel.cs, so this typo propagates to the call site as well.Actual Behavior
Suggested Fix
Rename to
FormatEnvironmentVariablesand update all call sites:Environment
src/Servy.Core/Helpers/StringHelper.cssrc/Servy/ViewModels/MainViewModel.cs