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 | 1b025393909740a413e9c57c1e7c5d865b379920 (patch) | |
tree | 1163ddf18a2f4556080d1ed25bfdaf11f26c6880 /util/prosodyctl.lua | |
parent | 560261b88e2ff44c58bb8255e029fd09fb8b0397 (diff) | |
download | prosody-1b025393909740a413e9c57c1e7c5d865b379920.tar.gz prosody-1b025393909740a413e9c57c1e7c5d865b379920.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.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 |