Software /
code /
prosody-modules
Changeset
1812:22b799c7b50a
mod_migrate: Fix typo in usage string
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 01 Sep 2015 10:30:08 +0200 |
parents | 1811:040f28f31bec |
children | 1813:f02f52a2ee11 |
files | mod_migrate/README.markdown mod_migrate/mod_migrate.lua |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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);