fix missing arguments (#361)

Co-authored-by: xix3r <xix3r@pop-os.localdomain>
This commit is contained in:
Sahil Chouksey 2022-02-03 02:02:11 +05:30 committed by GitHub
parent baf1251c06
commit f8676f2bec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -83,7 +83,7 @@ impl<I: Copy + std::hash::Hash + std::cmp::Eq + std::fmt::Debug, T> OneToNElemen
);
}
} else {
bail!("parent_to_child stored mapping from {:?} to {:?}, which was not found in child_to_parent");
bail!("parent_to_child stored mapping from {:?} to {:?}, which was not found in child_to_parent", parent, child);
}
}
}