mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 19:58:18 +00:00
Address lints
This commit is contained in:
parent
8c68044c54
commit
4a59e24081
1 changed files with 2 additions and 2 deletions
|
@ -1293,7 +1293,7 @@ mod dbg {
|
|||
impl<'a, 'r, I: LayoutInterner<'a>> std::fmt::Debug for DbgTags<'a, 'r, I> {
|
||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||
f.debug_list()
|
||||
.entries(self.1.iter().map(|l| DbgFields(self.0, *l)))
|
||||
.entries(self.1.iter().map(|l| DbgFields(self.0, l)))
|
||||
.finish()
|
||||
}
|
||||
}
|
||||
|
@ -1380,7 +1380,7 @@ mod dbg {
|
|||
.entries(
|
||||
self.1
|
||||
.iter()
|
||||
.map(|(sym, captures)| (sym, DbgFields(self.0, &captures))),
|
||||
.map(|(sym, captures)| (sym, DbgFields(self.0, captures))),
|
||||
)
|
||||
.finish()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue