1
0
mirror of https://github.com/rancher/os.git synced 2025-06-30 08:41:48 +00:00

Fix typos in addon help messages

This commit is contained in:
Darren Shepherd 2015-03-14 18:24:01 -07:00
parent 3f078a9917
commit 0f8eb3e21d

View File

@ -13,17 +13,17 @@ func addonSubCommands() []cli.Command {
return []cli.Command{
{
Name: "enable",
Usage: "turn on a module",
Usage: "turn on an addon",
Action: enable,
},
{
Name: "disable",
Usage: "turn off a module",
Usage: "turn off an addon",
Action: disable,
},
{
Name: "list",
Usage: "list modules and state",
Usage: "list addons and state",
Action: list,
},
}