mod_migrate: Fix typo in usage string
authorKim Alvefur <zash@zash.se>
Tue, 01 Sep 2015 10:30:08 +0200
changeset 1816 22b799c7b50a
parent 1815 040f28f31bec
child 1817 f02f52a2ee11
mod_migrate: Fix typo in usage string
mod_migrate/README.markdown
mod_migrate/mod_migrate.lua
--- a/mod_migrate/README.markdown	Mon Aug 31 18:01:35 2015 +0200
+++ b/mod_migrate/README.markdown	Tue Sep 01 10:30:08 2015 +0200
@@ -10,7 +10,7 @@
 storage drivers.
 
 Usage:
-`prosodyctl mod_migrate example.com <source-store> <targer-driver> [users]*`
+`prosodyctl mod_migrate example.com <source-store> <target-driver> [users]*`
 
 `<source-store>` would be e.g. `accounts` or `private`
 
--- a/mod_migrate/mod_migrate.lua	Mon Aug 31 18:01:35 2015 +0200
+++ b/mod_migrate/mod_migrate.lua	Tue Sep 01 10:30:08 2015 +0200
@@ -7,7 +7,7 @@
 function module.command(arg)
 	local host, source_store, migrate_to, user = unpack(arg);
 	if not migrate_to then
-		return print("Usage: prosodyctl mod_migrate example.com <source-store> <targer-driver> [users]*");
+		return print("Usage: prosodyctl mod_migrate example.com <source-store> <target-driver> [users]*");
 	end
 	sm.initialize_host(host);
 	um.initialize_host(host);