From f8676f2bec7347b09311402f1d5e17ef07db32ca Mon Sep 17 00:00:00 2001 From: Sahil Chouksey <59500196+sahilchouksey@users.noreply.github.com> Date: Thu, 3 Feb 2022 02:02:11 +0530 Subject: [PATCH] fix missing arguments (#361) Co-authored-by: xix3r --- crates/eww/src/state/one_to_n_elements_map.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/eww/src/state/one_to_n_elements_map.rs b/crates/eww/src/state/one_to_n_elements_map.rs index fc4d5a6..11a755f 100644 --- a/crates/eww/src/state/one_to_n_elements_map.rs +++ b/crates/eww/src/state/one_to_n_elements_map.rs @@ -83,7 +83,7 @@ impl 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); } } }