Skip to content

Commit 17f94a1

Browse files
committed
add spacing between comment and code for readability
1 parent e3df795 commit 17f94a1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Plugins/Flow.Launcher.Plugin.Explorer/Search/EnvironmentVariables.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,11 @@ internal static Dictionary<string, string> LoadEnvironmentStringPaths()
2828
// we add a trailing slash to the path to make sure drive paths become valid absolute paths.
2929
// for example, if %systemdrive% is C: we turn it to C:\
3030
path = path.TrimEnd(Path.DirectorySeparatorChar) + Path.DirectorySeparatorChar;
31+
3132
// if we don't have an absolute path, we use Path.GetFullPath to get one.
3233
// for example, if %homepath% is \Users\John we turn it to C:\Users\John
3334
path = Path.IsPathFullyQualified(path) ? path : Path.GetFullPath(path);
35+
3436
// Variables are returned with a mixture of all upper/lower case.
3537
// Call ToLower() to make the results look consistent
3638
envStringPaths.Add(special.Key.ToString().ToLower(), path);

0 commit comments

Comments
 (0)