diff options
author | Wilfred Hughes <me@wilfred.me.uk> | 2024-11-14 14:19:51 -0500 |
---|---|---|
committer | Wilfred Hughes <me@wilfred.me.uk> | 2024-11-15 00:03:30 -0500 |
commit | 819a672df87b982593bc3d47246ef1e9da35f886 (patch) | |
tree | 31200f3f0d86fd1369f8cd1195245a0aee90f2fd | |
parent | 1c0dd04ef1ca47283082f4d4896eff295b26a6ba (diff) |
Clarify content ID in debug output on Syntax
-rw-r--r-- | src/parse/syntax.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parse/syntax.rs b/src/parse/syntax.rs index 80a40eab6e..746dcc60eb 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() )); |