Skip to content

Commit

Permalink
chore: fix bad commit
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Mar 2, 2024
1 parent 52c729d commit 0de20fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ fn get_inputs_string(inputs: &[FunctionInput]) -> String {
// Once a vectors length gets above this limit,
// instead of listing all of their elements, we use ellipses
// to abbreviate them
let should_abbreviate_inputs = true; //inputs.len() <= ABBREVIATION_LIMIT;
let should_abbreviate_inputs = inputs.len() <= ABBREVIATION_LIMIT;

if should_abbreviate_inputs {
let mut result = String::new();
Expand Down

0 comments on commit 0de20fa

Please sign in to comment.