util.prosodyctl: Reword message to sound more natural
authorKim Alvefur <zash@zash.se>
Thu, 21 Jan 2021 18:50:19 +0100
changeset 11296 ad5cd9b0f8de
parent 11295 9a98464a35e4
child 11297 cd27ac5e5afe
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 :)
util/prosodyctl.lua
--- a/util/prosodyctl.lua	Thu Jan 21 18:43:16 2021 +0100
+++ b/util/prosodyctl.lua	Thu Jan 21 18:50:19 2021 +0100
@@ -222,7 +222,7 @@
 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