diff --git a/src/main/liveplugin/implementation/actions/gist/SharePluginAsGistAction.kt b/src/main/liveplugin/implementation/actions/gist/SharePluginAsGistAction.kt index 968d8941..e2e82cd9 100644 --- a/src/main/liveplugin/implementation/actions/gist/SharePluginAsGistAction.kt +++ b/src/main/liveplugin/implementation/actions/gist/SharePluginAsGistAction.kt @@ -72,11 +72,11 @@ class SharePluginAsGistAction : AnAction("Share as Gist", "Share as plugin files } } catch (e: IOException) { runLaterOnEdt { - project.showError("Failed to share gist: ${e.message}", e) + project.showError("Failed to share Gist: ${e.message}", e) } } catch (e: FailedRequest) { runLaterOnEdt { - project.showError("Failed to share gist: ${e.message}", e) + project.showError("Failed to share Gist: ${e.message}", e) } } }