From cc5b61418aca3976dbaa3466899fafd5b28e09f2 Mon Sep 17 00:00:00 2001 From: Jeremy Levy Date: Tue, 31 May 2022 15:43:53 +0200 Subject: [PATCH] Improve uninstall success message wording --- internal/presenters/uninstall.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/internal/presenters/uninstall.go b/internal/presenters/uninstall.go index f6bd114..6f4de9e 100644 --- a/internal/presenters/uninstall.go +++ b/internal/presenters/uninstall.go @@ -49,11 +49,11 @@ func (u UninstallPresenter) PresentToView(response features.UninstallResponse) { viewDataMessage := response.Content.SuccessMessage viewDataSubtext := fmt.Sprintf( "If you want to remove Recode entirely:\n\n"+ - " - Remove the binary located at path %s\n\n"+ - " - Remove the contiguration located at path %s\n\n"+ - " - Unauthorize the application on GitHub by going to %s", - bold("\""+response.Content.RecodeExecutablePath+"\""), - bold("\""+response.Content.RecodeConfigDirPath+"\""), + " - Remove the Recode CLI (located at %s)\n\n"+ + " - Remove the Recode configuration (located at %s)\n\n"+ + " - Unauthorize the Recode application on GitHub by going to: %s", + bold(response.Content.RecodeExecutablePath), + bold(response.Content.RecodeConfigDirPath), bold("https://github.com/settings/applications"), )