From 3caff1217acca188ed53d5dfc338023ae410368e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Berm=C3=BAdez=20Schettino?= Date: Wed, 24 Jul 2019 13:22:25 +0800 Subject: [PATCH] shFormat.ts: Fix typos --- src/shFormat.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/shFormat.ts b/src/shFormat.ts index 061550b7..e6535c3a 100644 --- a/src/shFormat.ts +++ b/src/shFormat.ts @@ -293,7 +293,7 @@ function showMamualInstallMessage() { vscode.window.showErrorMessage( `[${configurationPrefix}.${ ConfigItemName.Path - }]not found! please install manual https://mvdan.cc/sh/cmd/shfmt ` + }]not found! please install manually https://mvdan.cc/sh/cmd/shfmt ` ); } function installFmtForMaxos() { @@ -346,12 +346,12 @@ function installForLinux() { } terminal.sendText("echo '**Enjoy shellscript!**'", true); terminal.sendText( - "echo 'fork or star https://github.com/foxundermoon/vs-shell-format'", + "echo 'fork or star https://github.com/foxundermoon/vs-shell-format'", true ); } catch (error) { vscode.window.showWarningMessage( - "install shfmt faild , please install manual https://mvdan.cc/sh/cmd/shfmt" + "install shfmt failed , please install manually https://mvdan.cc/sh/cmd/shfmt" ); } }