From 95a1b9a9684c499f468392e46d12e1b447a79495 Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Mon, 29 Jun 2020 21:53:01 +1000 Subject: [PATCH] fix typo --- .../Search/EnvironmentVariables.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Search/EnvironmentVariables.cs b/Plugins/Flow.Launcher.Plugin.Explorer/Search/EnvironmentVariables.cs index 2dec51e99..c576d6ee8 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Search/EnvironmentVariables.cs +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Search/EnvironmentVariables.cs @@ -25,7 +25,7 @@ namespace Flow.Launcher.Plugin.Explorer.Search if (Directory.Exists(special.Value.ToString())) { // Variables are returned with a mixture of all upper/lower case. - // Call ToLower() to make them look consitent + // Call ToLower() to make the results look consistent envStringPaths.Add(special.Key.ToString().ToLower(), special.Value.ToString()); } }