diff --git a/README.md b/README.md index 5ac1968..9530732 100644 --- a/README.md +++ b/README.md @@ -28,13 +28,16 @@ Install an app: ### Commands update Update the index - search Search available apps + search [] Search available apps show Show detailed info about an app - devices List connected devices - download Download an app - install Install or upgrade app + install Install or upgrade apps uninstall Uninstall an app + download Download an app + devices List connected devices + list (categories) List all known values of a kind defaults Reset to the default settings + version Print version information + An appid is just an app's unique package name. A specific version of an app can be selected by following the appid with a colon and the version code. The diff --git a/install.go b/install.go index dc6b3cb..99cc312 100644 --- a/install.go +++ b/install.go @@ -13,7 +13,7 @@ import ( var cmdInstall = &Command{ UsageLine: "install ", - Short: "Install or upgrade an app", + Short: "Install or upgrade apps", } var ( diff --git a/show.go b/show.go index d2d2ba7..b082807 100644 --- a/show.go +++ b/show.go @@ -14,7 +14,7 @@ import ( var cmdShow = &Command{ UsageLine: "show ", - Short: "Show detailed info about an app", + Short: "Show detailed info about apps", } func init() {