From 5b8b84a34c97b2503732311e3fd9b00a5b89b2a0 Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Mon, 30 Jun 2025 12:58:44 +0800 Subject: [PATCH] Fix code comments --- Flow.Launcher.Core/Plugin/PluginInstaller.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Flow.Launcher.Core/Plugin/PluginInstaller.cs b/Flow.Launcher.Core/Plugin/PluginInstaller.cs index a69ab322e..781ad3ff0 100644 --- a/Flow.Launcher.Core/Plugin/PluginInstaller.cs +++ b/Flow.Launcher.Core/Plugin/PluginInstaller.cs @@ -78,7 +78,7 @@ public static class PluginInstaller { API.LogException(ClassName, "Failed to install plugin", e); API.ShowMsgError(API.GetTranslation("ErrorInstallingPlugin")); - return; // don’t restart on failure + return; // do not restart on failure } if (Settings.AutoRestartAfterChanging) @@ -152,7 +152,7 @@ public static class PluginInstaller { API.LogException(ClassName, "Failed to uninstall plugin", e); API.ShowMsgError(API.GetTranslation("ErrorUninstallingPlugin")); - return; // don’t restart on failure + return; // don not restart on failure } if (Settings.AutoRestartAfterChanging) @@ -208,7 +208,7 @@ public static class PluginInstaller { API.LogException(ClassName, "Failed to update plugin", e); API.ShowMsgError(API.GetTranslation("ErrorUpdatingPlugin")); - return; // don’t restart on failure + return; // do not restart on failure } if (Settings.AutoRestartAfterChanging)