From 7783b53ce6b6aaa3d0c2fb0bf0382474d62969d4 Mon Sep 17 00:00:00 2001 From: Silen Locatelli <88315530+SilenLoc@users.noreply.github.com> Date: Tue, 9 Apr 2024 08:50:58 +0200 Subject: [PATCH] fix: add right doc --- DOC.md | 4 ++-- src/commands.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DOC.md b/DOC.md index 9923e5a..1388ede 100644 --- a/DOC.md +++ b/DOC.md @@ -21,7 +21,7 @@ qwit cli * `markdown` — [STABLE] print markdown doc of qwit to std out * `show` — [STABLE] show the dsv from the start in a nice way * `validation` — [STABLE] validate a dsv file against a dsv schema -* `excel` — [PREVIEW] from a excel file create a csv file, for now it only prints out the values in raw +* `excel` — [PREVIEW] convert a excel file to a csv/dsv file ###### **Options:** @@ -70,7 +70,7 @@ qwit cli ## `qwit excel` -[PREVIEW] from a excel file create a csv file, for now it only prints out the values in raw +[PREVIEW] convert a excel file to a csv/dsv file **Usage:** `qwit excel --source --target ` diff --git a/src/commands.rs b/src/commands.rs index f528c40..c54db41 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -77,7 +77,7 @@ enum Commands { #[arg(short, long, env = "Q_SOURCE")] source: String, }, - /// [PREVIEW] from a excel file create a csv file, for now it only prints out the values in raw + /// [PREVIEW] convert a excel file to a csv/dsv file Excel { #[arg(short, long, env = "Q_EXCEL_SOURCE")] source: String,