Merge branch 'fix-documentation' into 'main'

docs/fix: rename db:import to nostr:pull

See merge request soapbox-pub/ditto!443
This commit is contained in:
Alex Gleason 2024-08-03 00:35:14 +00:00
commit 5ac1abdf69

View file

@ -138,7 +138,7 @@ if (import.meta.main) {
} }
function showHelp() { function showHelp() {
console.info('ditto - db:import'); console.info('ditto - nostr:pull');
console.info("Import users' posts and kind 0s from a given set of relays.\n"); console.info("Import users' posts and kind 0s from a given set of relays.\n");
showUsage(); showUsage();
console.info(` console.info(`
@ -151,7 +151,7 @@ OPTIONS:
function showUsage() { function showUsage() {
console.info( console.info(
'Usage: deno task db:import [options] npub1xxxxxx[ npub1yyyyyyy]...' + 'Usage: deno task nostr:pull [options] npub1xxxxxx[ npub1yyyyyyy]...' +
' wss://first.relay[ second.relay]...', ' wss://first.relay[ second.relay]...',
); );
} }