Skip to content

Commit f4405c0

Browse files
author
Rickard Lundin
committed
minor fixex
1 parent 18b41a2 commit f4405c0

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ logical cores**. If this argument is omitted, then the program will run in singl
127127
An experimental multithreaded implementation exists , it reads chunks of 2 megabytes and splits them into n anmounts of cores in O(1).
128128
Run a small conversion test using the "arrow" converter with slicer type "chunked"
129129
```
130-
$ cargo run --package evolution --release --bin evolution -- convertchunked --schema resources/schema/test_schema.json --in-file resources/schema/test_schema_mock.txt --out-file out.parquet arrow chunked
130+
$ cargo run --package evolution --release --bin evolution -- c-convert --schema resources/schema/test_schema.json --in-file resources/schema/test_schema_mock.txt --out-file out.parquet arrow chunks
131131
```
132132

133133
## 📋 License

src/cli.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,10 @@ enum Commands {
107107
thread_channel_capacity: Option<usize>,
108108

109109
},
110-
ConvertChunked {
110+
CConvert {
111111
/// Sets schema file
112112
113-
#[clap(value_enum, value_name = "CONVERTER")]
113+
#[clap(value_enum, value_name = "CCONVERTER")]
114114
converter: Converters,
115115

116116
#[clap(value_enum, value_name = "SLICER")]
@@ -261,7 +261,7 @@ impl Cli {
261261

262262

263263

264-
Some(Commands::ConvertChunked {
264+
Some(Commands::CConvert {
265265
converter,
266266
slicer: _,
267267
schema,

0 commit comments

Comments
 (0)