Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoburns committed Dec 10, 2024
1 parent 3f572f6 commit 280b1ba
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/blitz-dom/src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,12 @@ pub struct Node {
}

impl Node {
pub (crate) fn new(tree: *mut Slab<Node>, id: usize, guard: SharedRwLock, data: NodeData) -> Self {
pub(crate) fn new(
tree: *mut Slab<Node>,
id: usize,
guard: SharedRwLock,
data: NodeData,
) -> Self {
Self {
tree,

Expand Down

0 comments on commit 280b1ba

Please sign in to comment.