diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2015-06-29 21:32:18 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2015-06-29 21:32:18 -0300 |
commit | 066e1c6bd90d2e0e4fcdbc116bd857c62779b4cd (patch) | |
tree | fc2637e00484878996953bc49d9871ccfd8bfad0 | |
parent | 5861782615800511551adafce78844c93734abb9 (diff) | |
download | luarocks-066e1c6bd90d2e0e4fcdbc116bd857c62779b4cd.tar.gz luarocks-066e1c6bd90d2e0e4fcdbc116bd857c62779b4cd.tar.bz2 luarocks-066e1c6bd90d2e0e4fcdbc116bd857c62779b4cd.zip |
Make wording of help summaries consistent.
As noted by @mpeterv in https://github.com/keplerproject/luarocks/pull/400#issuecomment-116307146
Changed them so they all use imperative verb form.
-rw-r--r-- | src/luarocks/doc.lua | 2 | ||||
-rw-r--r-- | src/luarocks/list.lua | 2 | ||||
-rw-r--r-- | src/luarocks/show.lua | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/luarocks/doc.lua b/src/luarocks/doc.lua index 034e2a16..53ed0116 100644 --- a/src/luarocks/doc.lua +++ b/src/luarocks/doc.lua | |||
@@ -13,7 +13,7 @@ local fetch = require("luarocks.fetch") | |||
13 | local fs = require("luarocks.fs") | 13 | local fs = require("luarocks.fs") |
14 | local download = require("luarocks.download") | 14 | local download = require("luarocks.download") |
15 | 15 | ||
16 | doc.help_summary = "Shows documentation for an installed rock." | 16 | doc.help_summary = "Show documentation for an installed rock." |
17 | 17 | ||
18 | doc.help = [[ | 18 | doc.help = [[ |
19 | <argument> is an existing package name. | 19 | <argument> is an existing package name. |
diff --git a/src/luarocks/list.lua b/src/luarocks/list.lua index 518b83ce..fddded03 100644 --- a/src/luarocks/list.lua +++ b/src/luarocks/list.lua | |||
@@ -11,7 +11,7 @@ local cfg = require("luarocks.cfg") | |||
11 | local util = require("luarocks.util") | 11 | local util = require("luarocks.util") |
12 | local path = require("luarocks.path") | 12 | local path = require("luarocks.path") |
13 | 13 | ||
14 | list.help_summary = "Lists currently installed rocks." | 14 | list.help_summary = "List currently installed rocks." |
15 | list.help_arguments = "[--porcelain] <filter>" | 15 | list.help_arguments = "[--porcelain] <filter>" |
16 | list.help = [[ | 16 | list.help = [[ |
17 | <filter> is a substring of a rock name to filter by. | 17 | <filter> is a substring of a rock name to filter by. |
diff --git a/src/luarocks/show.lua b/src/luarocks/show.lua index 3243c0ce..08b2673f 100644 --- a/src/luarocks/show.lua +++ b/src/luarocks/show.lua | |||
@@ -11,7 +11,7 @@ local path = require("luarocks.path") | |||
11 | local deps = require("luarocks.deps") | 11 | local deps = require("luarocks.deps") |
12 | local fetch = require("luarocks.fetch") | 12 | local fetch = require("luarocks.fetch") |
13 | local manif = require("luarocks.manif") | 13 | local manif = require("luarocks.manif") |
14 | show.help_summary = "Shows information about an installed rock." | 14 | show.help_summary = "Show information about an installed rock." |
15 | 15 | ||
16 | show.help = [[ | 16 | show.help = [[ |
17 | <argument> is an existing package name. | 17 | <argument> is an existing package name. |