# HG changeset patch
# User Kim Alvefur <zash@zash.se>
# Date 1611251419 -3600
# Node ID ad5cd9b0f8de7e7aa439373ef7d1804a96963165
# Parent  9a98464a35e40308208b46f86a6c7534f4396029
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 :)

diff -r 9a98464a35e4 -r ad5cd9b0f8de 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