diff options
author | Kim Alvefur <zash@zash.se> | 2021-01-21 18:50:19 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-01-21 18:50:19 +0100 |
commit | 47c0ab5788fc340f742f9fe83db3a518609dbe36 (patch) | |
tree | 1163ddf18a2f4556080d1ed25bfdaf11f26c6880 /util | |
parent | f3856b703da3fd4e87d8d66bfaca5f52067991bf (diff) | |
download | prosody-47c0ab5788fc340f742f9fe83db3a518609dbe36.tar.gz prosody-47c0ab5788fc340f742f9fe83db3a518609dbe36.zip |
util.prosodyctl: Reword message to sound more natural
English is hard. "to" might also work, but we'll go with this for now.
18:32:11 <MattJ> s/at/in/ ?
18:32:19 <MattJ> to match luarocks :)
Diffstat (limited to 'util')
-rw-r--r-- | util/prosodyctl.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/prosodyctl.lua b/util/prosodyctl.lua index 3dcfbd38..d53a7ff5 100644 --- a/util/prosodyctl.lua +++ b/util/prosodyctl.lua @@ -222,7 +222,7 @@ local render_cli = interpolation.new("%b{}", function (s) return "'"..s:gsub("'" local function call_luarocks(operation, mod, server) local dir = prosody.paths.installer; if operation == "install" then - show_message("Installing %s at %s", mod, dir); + show_message("Installing %s in %s", mod, dir); elseif operation == "remove" then show_message("Removing %s from %s", mod, dir); end |