From e24a5ee1c46bf7c8d2319b446dcb037f5f3415b3 Mon Sep 17 00:00:00 2001 From: Joscha Date: Sun, 21 Aug 2022 16:33:47 +0200 Subject: [PATCH] Adjust export help message wording Since the export command can now export multiple rooms at a time, the old description was outdated. --- CHANGELOG.md | 1 + src/main.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cde521..7df1948 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ Procedure when bumping the version number: ### Changed - Reduced amount of unnecessary redraws +- Description of `export` CLI command ### Fixed - Crash when connecting to nonexistent rooms diff --git a/src/main.rs b/src/main.rs index aa3abc9..36708dd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -41,7 +41,7 @@ use crate::logger::Logger; enum Command { /// Run the client interactively (default). Run, - /// Export logs for a single room as a plain text file. + /// Export room logs as plain text files. Export(export::Args), /// Compact and clean up vault. Gc,