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,