Formatting

This commit is contained in:
Michael Schimmel
2026-02-24 08:51:51 +01:00
parent 51d83562de
commit 6810d5fa9f
3 changed files with 16 additions and 12 deletions
+4 -1
View File
@@ -487,7 +487,10 @@ impl Binder {
},
))
}
_ => Err(format!("Invalid node in assignment pattern: {:?}", node.kind)),
_ => Err(format!(
"Invalid node in assignment pattern: {:?}",
node.kind
)),
}
}