Skip to content

Commit

Permalink
fix(format): display Value instead of debug
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianSpeitel committed May 14, 2024
1 parent 8c0037d commit fdc568e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data/format.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ pub trait Format {
Value::Bytes(b) => {
write!(f, "{{b\"{}\"}}", b.escape_ascii().ellipse::<Self>())?;
}
v => write!(f, "{{{:?}}}", v)?,
v => write!(f, "{{{v}}}")?,
}
return Ok(());
}
Expand Down

0 comments on commit fdc568e

Please sign in to comment.