Skip to content

Commit 3cecf5b

Browse files
TheBestPessimistTheBestPessimist
authored andcommitted
Use String Interpolation
1 parent 9bc6a4e commit 3cecf5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ public static bool IsMedia(string extension)
297297
private static string addScoreInDebug(int score)
298298
{
299299
#if DEBUG
300-
return " ➡️ " + score;
300+
return $" ➡️ {score}";
301301
#else
302302
return "";
303303
#endif

0 commit comments

Comments
 (0)