You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(_unbound,0) => format!("the following slots were not provided as arguments: {}", unbound_values.iter().join(",")),
347
-
(0, _extra) => format!("the following slots were provided as arguments, but did not exist in the template: {}", extra_values.iter().join(",")),
348
-
(_unbound, _extra) => format!("the following slots were not provided as arguments: {}. The following slots were provided as arguments, but did not exist in the template: {}", unbound_values.iter().join(","), extra_values.iter().join(","))
350
+
(_unbound,0) => write!(fmt,"the following slots were not provided as arguments: {}", unbound_values.iter().join(",")),
351
+
(0, _extra) => write!(fmt,"the following slots were provided as arguments, but did not exist in the template: {}", extra_values.iter().join(",")),
352
+
(_unbound, _extra) => write!(fmt,"the following slots were not provided as arguments: {}. The following slots were provided as arguments, but did not exist in the template: {}", unbound_values.iter().join(","), extra_values.iter().join(",")),
0 commit comments