summaryrefslogtreecommitdiffstats
path: root/native/src/widget/tree.rs
diff options
context:
space:
mode:
authorLibravatar Bingus <shankern@protonmail.com>2023-02-17 11:42:49 -0800
committerLibravatar Bingus <shankern@protonmail.com>2023-02-17 11:42:49 -0800
commit8da098330b58542cc929f4f24d02e26bd654bae4 (patch)
treeceae5206f912226070f67e9fcb94d11fd53fe9ab /native/src/widget/tree.rs
parent3c095aa3f09f28c6fd9d2a7ba220ced407693e0b (diff)
downloadiced-8da098330b58542cc929f4f24d02e26bd654bae4.tar.gz
iced-8da098330b58542cc929f4f24d02e26bd654bae4.tar.bz2
iced-8da098330b58542cc929f4f24d02e26bd654bae4.zip
Fixed widget animations implementation
Diffstat (limited to '')
-rw-r--r--native/src/widget/tree.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/native/src/widget/tree.rs b/native/src/widget/tree.rs
index 0af40c33..da269632 100644
--- a/native/src/widget/tree.rs
+++ b/native/src/widget/tree.rs
@@ -67,7 +67,7 @@ impl Tree {
}
}
- /// Reconciliates the children of the tree with the provided list of widgets.
+ /// Reconciles the children of the tree with the provided list of widgets.
pub fn diff_children<'a, Message, Renderer>(
&mut self,
new_children: &[impl Borrow<dyn Widget<Message, Renderer> + 'a>],