aboutsummaryrefslogtreecommitdiff
path: root/weed/command/autocomplete.go
diff options
context:
space:
mode:
authorNat Makarevitch <nat@makarevitch.org>2022-05-16 22:11:33 +0800
committerNat Makarevitch <nat@makarevitch.org>2022-05-16 22:11:33 +0800
commitb72f0634d7d7d736cee96477852a8d36e89ac1cb (patch)
tree09e0cf1e66bd16519c364bb2f30192cd07c69b8a /weed/command/autocomplete.go
parent17c676cb86a5e9a7d2b9c8c6b1970c0350406fd0 (diff)
downloadseaweedfs-b72f0634d7d7d736cee96477852a8d36e89ac1cb.tar.xz
seaweedfs-b72f0634d7d7d736cee96477852a8d36e89ac1cb.zip
minor (typos...), done while reading around
Diffstat (limited to 'weed/command/autocomplete.go')
-rw-r--r--weed/command/autocomplete.go6
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
}