From 819a672df87b982593bc3d47246ef1e9da35f886 Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Thu, 14 Nov 2024 14:19:51 -0500 Subject: [PATCH] Clarify content ID in debug output on Syntax --- src/parse/syntax.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/parse/syntax.rs b/src/parse/syntax.rs index 80a40eab6..746dcc60e 100644 --- a/src/parse/syntax.rs +++ b/src/parse/syntax.rs @@ -139,7 +139,7 @@ impl<'a> fmt::Debug for Syntax<'a> { .. } => { let mut ds = f.debug_struct(&format!( - "List id:{} content:{}", + "List id:{} content_id:{}", self.id(), self.content_id() )); @@ -169,7 +169,7 @@ impl<'a> fmt::Debug for Syntax<'a> { .. } => { let mut ds = f.debug_struct(&format!( - "Atom id:{} content:{}", + "Atom id:{} content_id:{}", self.id(), self.content_id() ));