Skip to content

Commit

Permalink
Clarify content ID in debug output on Syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Wilfred committed Nov 15, 2024
1 parent 1c0dd04 commit 819a672
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/parse/syntax.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
));
Expand Down Expand Up @@ -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()
));
Expand Down

0 comments on commit 819a672

Please sign in to comment.