Skip to content

Commit

Permalink
New file search pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
rayyildiz committed Apr 4, 2024
1 parent 35c4760 commit d603a97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -48,7 +48,7 @@ Arguments:

Options:
-d, --delimiter <DELIMITER> Represents the delimiter used in CSV files [default: ,]
-n, --no-header Represents whether to include the header in the CSV search column
-n, --no-header Represents whether to include the header in the CSV search column [default: false]
-w, --worker <WORKER> Number of worker threads to use for performing the task [default: 4]
-h, --help Print help
-V, --version Print version
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Expand Up @@ -25,7 +25,7 @@ struct Args {
no_header: bool,

/// Number of worker threads to use for performing the task.
#[arg(short, long, default_value_t = 4)]
#[arg(short, long, default_value_t = 1)]
worker: u8,
}

Expand Down

0 comments on commit d603a97

Please sign in to comment.