Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
bee-san committed Dec 11, 2022
1 parent 3f2d7a6 commit 45c1eb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli_pretty_printing/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ pub fn decoded_how_many_times(depth: u32) {
// Then we add 25 for Caesar, and roughly 25 for Binary
let decoders = crate::filtration_system::filter_and_get_decoders();
let decoded_times_int = depth * (decoders.components.len() as u32 + 25 + 25);
let decoded_times_str= format!("{} times", decoded_times_int);
let decoded_times_str = format!("{} times", decoded_times_int);

let time_took = calculate_time_took(decoded_times_int);

Expand Down

0 comments on commit 45c1eb3

Please sign in to comment.