Fix missing delimiter

This commit is contained in:
imaqtkatt 2024-05-07 14:17:01 -03:00
parent 73b57c40b7
commit 88b711b930

View File

@ -60,7 +60,7 @@ impl Term {
}
fn make_fun_name(typ: &mut Name) -> Name {
Name::new(format!("{typ}/bind")
Name::new(format!("{typ}/bind"))
}
impl fmt::Display for MonadicBindError {