diff options
| author | Chris Lu <chrislusf@users.noreply.github.com> | 2022-05-16 07:42:58 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-16 07:42:58 -0700 |
| commit | 72e7dcde51d148494c2dcb734565f6681dba27fd (patch) | |
| tree | 44a1313fbd86fd9662d90b25092f1be698bca979 /weed/command/autocomplete.go | |
| parent | a84f4eefc23e1d9841908ba717d0606e414014ea (diff) | |
| parent | b72f0634d7d7d736cee96477852a8d36e89ac1cb (diff) | |
| download | seaweedfs-72e7dcde51d148494c2dcb734565f6681dba27fd.tar.xz seaweedfs-72e7dcde51d148494c2dcb734565f6681dba27fd.zip | |
Merge pull request #3060 from natmaka/master
Diffstat (limited to 'weed/command/autocomplete.go')
| -rw-r--r-- | weed/command/autocomplete.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/weed/command/autocomplete.go b/weed/command/autocomplete.go index 9a545a183..955ce4006 100644 --- a/weed/command/autocomplete.go +++ b/weed/command/autocomplete.go @@ -41,7 +41,7 @@ func AutocompleteMain(commands []*Command) bool { func installAutoCompletion() bool { if runtime.GOOS == "windows" { - fmt.Println("windows is not supported") + fmt.Println("Windows is not supported") return false } @@ -56,7 +56,7 @@ func installAutoCompletion() bool { func uninstallAutoCompletion() bool { if runtime.GOOS == "windows" { - fmt.Println("windows is not supported") + fmt.Println("Windows is not supported") return false } @@ -65,7 +65,7 @@ func uninstallAutoCompletion() bool { fmt.Printf("uninstall failed! %s\n", err) return false } - fmt.Printf("autocompletion is disable. Please restart your shell.\n") + fmt.Printf("autocompletion is disabled. Please restart your shell.\n") return true } |
