aboutsummaryrefslogtreecommitdiffstats
path: root/util/prosodyctl.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2021-01-21 18:50:19 +0100
committerKim Alvefur <zash@zash.se>2021-01-21 18:50:19 +0100
commit47c0ab5788fc340f742f9fe83db3a518609dbe36 (patch)
tree1163ddf18a2f4556080d1ed25bfdaf11f26c6880 /util/prosodyctl.lua
parentf3856b703da3fd4e87d8d66bfaca5f52067991bf (diff)
downloadprosody-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/prosodyctl.lua')
-rw-r--r--util/prosodyctl.lua2
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