cargo fmt

This commit is contained in:
Henry Zimmerman 2019-09-21 08:09:46 -04:00
parent 2256c04288
commit 5dc34e6e27

View File

@ -352,7 +352,7 @@ impl<COMP: Component> VDiff for VTag<COMP> {
.expect("tried to remove not rendered VTag from DOM");
// recursively remove its children
self.childs.drain(..).for_each(|mut v|{
self.childs.drain(..).for_each(|mut v| {
v.detach(&node);
});