aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2015-06-29 21:32:18 -0300
committerHisham Muhammad <hisham@gobolinux.org>2015-06-29 21:32:18 -0300
commit066e1c6bd90d2e0e4fcdbc116bd857c62779b4cd (patch)
treefc2637e00484878996953bc49d9871ccfd8bfad0
parent5861782615800511551adafce78844c93734abb9 (diff)
downloadluarocks-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.lua2
-rw-r--r--src/luarocks/list.lua2
-rw-r--r--src/luarocks/show.lua2
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")
13local fs = require("luarocks.fs") 13local fs = require("luarocks.fs")
14local download = require("luarocks.download") 14local download = require("luarocks.download")
15 15
16doc.help_summary = "Shows documentation for an installed rock." 16doc.help_summary = "Show documentation for an installed rock."
17 17
18doc.help = [[ 18doc.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")
11local util = require("luarocks.util") 11local util = require("luarocks.util")
12local path = require("luarocks.path") 12local path = require("luarocks.path")
13 13
14list.help_summary = "Lists currently installed rocks." 14list.help_summary = "List currently installed rocks."
15list.help_arguments = "[--porcelain] <filter>" 15list.help_arguments = "[--porcelain] <filter>"
16list.help = [[ 16list.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")
11local deps = require("luarocks.deps") 11local deps = require("luarocks.deps")
12local fetch = require("luarocks.fetch") 12local fetch = require("luarocks.fetch")
13local manif = require("luarocks.manif") 13local manif = require("luarocks.manif")
14show.help_summary = "Shows information about an installed rock." 14show.help_summary = "Show information about an installed rock."
15 15
16show.help = [[ 16show.help = [[
17<argument> is an existing package name. 17<argument> is an existing package name.