Skip to content

Commit

Permalink
Update compiler/noirc_printable_type/src/lib.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench authored Nov 27, 2023
1 parent f53c9a1 commit e675f00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/noirc_printable_type/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ fn to_string(value: &PrintableValue, typ: &PrintableType) -> Option<String> {
}

(PrintableValue::String(s), PrintableType::String { .. }) => {
output.push_str(&s);
output.push_str(s);
}

(PrintableValue::Struct(map), PrintableType::Struct { name, fields, .. }) => {
Expand Down

0 comments on commit e675f00

Please sign in to comment.