Skip to content

Commit

Permalink
chagned endianness short to E so they are unambiguous
Browse files Browse the repository at this point in the history
  • Loading branch information
Tommaso Fontana committed Feb 8, 2024
1 parent e04755f commit 6a5cb4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bin/bvgraph_cli/llp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ struct CliArgs {
/// The seed to use for the prng
seed: u64,

#[arg(short = 'e', long)]
#[arg(short = 'p', long)]
/// Save the permutation in ε-serde format.
epserde: bool,
}
Expand Down
2 changes: 1 addition & 1 deletion src/bin/bvgraph_cli/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ pub struct PermutationArgs {
/// Reference on how to use it: <https://stackoverflow.com/questions/75514455/how-to-parse-common-subcommand-arguments-with-clap-in-rust>
pub struct CompressArgs {
/// The endianess of the graph to write
#[clap(short = 'e', long)]
#[clap(short = 'E', long)]
pub endianess: Option<String>,

/// The compression windows
Expand Down

0 comments on commit 6a5cb4a

Please sign in to comment.