diff --git a/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs b/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs
index e6d9126c6..474ad6f0a 100644
--- a/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs
+++ b/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs
@@ -107,7 +107,7 @@ namespace Flow.Launcher.Plugin
///
/// Message title
/// Message subtitle
- /// Full path to icon
+ /// Message icon path (relative path to your plugin folder)
void ShowMsg(string title, string subTitle = "", string iconPath = "");
///
@@ -115,7 +115,7 @@ namespace Flow.Launcher.Plugin
///
/// Message title
/// Message subtitle
- /// Full path to icon
+ /// Message icon path (relative path to your plugin folder)
/// when true will use main windows as the owner
void ShowMsg(string title, string subTitle, string iconPath, bool useMainWindowAsOwner = true);