Skip to content

Commit 4dcf4e9

Browse files
committed
fix[display]: escape strings
Signed-off-by: Joe Isaacs <[email protected]>
1 parent 2f7a543 commit 4dcf4e9

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

vortex-scalar/src/utf8.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ pub struct Utf8Scalar<'a> {
3434

3535
impl Display for Utf8Scalar<'_> {
3636
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
37-
#[expect(clippy::use_debug, reason = "Escape escape codes")]
3837
match &self.value {
3938
None => write!(f, "null"),
4039
Some(v) => write!(f, "\"{}\"", StringEscape(v.as_str())),

0 commit comments

Comments
 (0)